@charset "UTF-8";

/* --- BLOG PAGE --- */
.blog-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.blog-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Specific adjustments for blog cards within the grid if needed */

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .blog-section {
        margin: 60px auto;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}