.blog-section {
    padding: 4rem 2rem;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.blog-image::after {
    content: '📝 Blog Post Image';
    opacity: 0.7;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--warm-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--soft-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--soft-gray);
}

.blog-link {
    color: var(--maroon);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 0.8rem;
}

.blog-categories {
    text-align: center;
    margin-top: 4rem;
}

.blog-categories h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 2rem;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-tag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--soft-cream);
    color: var(--warm-black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-tag:hover {
    background: var(--maroon);
    color: white;
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
