/* Blog Styles */

/* Hero Section */
.blog-hero {
    padding: 120px 0 80px;
    background: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}



/* Blog Section */
.blog-section {
    padding: 60px 0 80px;
}

/* Featured Post */
.post-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 48px;
    background: white;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.post-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.post-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.post-category {
    padding: 4px 12px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: var(--text-secondary);
    font-size: 14px;
}

.post-featured h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.post-featured p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.post-link:hover {
    gap: 12px;
}

.post-link svg {
    transition: transform 0.2s;
}

.post-link:hover svg {
    transform: translateX(4px);
}

/* Image Placeholder */
.post-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.post-card {
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.post-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.post-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.post-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

.post-card .post-category {
    background: var(--bg-secondary);
    color: var(--primary);
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
}

.blog-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.blog-cta .btn-primary:hover {
    background: var(--bg-secondary);
}

.blog-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.blog-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* Responsive */
@media (max-width: 768px) {
    
    .blog-hero h1 {
        font-size: 32px;
    }


    .post-featured {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .post-featured h2 {
        font-size: 28px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .blog-cta {
        padding: 40px 24px;
    }

    .blog-cta h2 {
        font-size: 28px;
    }

}