/* ─── Blog Hero ─────────────────────────────────── */
.blog-hero {
    padding: 120px 5% 60px;
    text-align: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebf5ee 100%);
}
.blog-hero h1 {
    font-size: 3rem;
    color: #4a6d41;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 12px;
}
.blog-hero p {
    font-size: 1.15rem;
    color: #7a8b7a;
    max-width: 600px;
    margin: 0 auto;
}
/* ─── Blog Posts ─────────────────────────────────── */
.blog-posts {
    padding: 60px 5% 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.blog-post-full {
    background-color: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-post-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.blog-post-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-post-full:hover .blog-post-image img {
    transform: scale(1.03);
}
.blog-post-content {
    padding: 36px 40px 44px;
}
.blog-post-date {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a8d5ba;
    margin-bottom: 12px;
}
.blog-post-content h2 {
    font-size: 1.8rem;
    color: #4a6d41;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 16px;
    line-height: 1.3;
}
.blog-post-content p {
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.blog-post-content h3 {
    font-size: 1.15rem;
    color: #4a6d41;
    font-family: 'Nunito', sans-serif;
    margin-top: 28px;
    margin-bottom: 8px;
}
/* ─── Back to Home ───────────────────────────────── */
.blog-back {
    text-align: center;
    padding: 20px 5% 80px;
}
/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 5% 40px;
    }
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    .blog-post-content {
        padding: 28px 24px 36px;
    }
    .blog-post-content h2 {
        font-size: 1.45rem;
    }
    .blog-post-image {
        height: 220px;
    }
}
@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    .blog-post-content {
        padding: 24px 18px 32px;
    }
}