﻿@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,500&family=Jost:wght@300;400;500;600&display=swap');
:root {
    --cream: #f2ebd9;
    --cream-deep: #e9dfc4;
    --green: #1f6306;
    --green-deep: #123c04;
    --gold: #cc9c18;
    --gold-soft: #e6c877;
    --ink: #28230f;
    --white: #fffdf7;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--cream);
    font-family: 'Jost', sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}
.blog-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 32px 40px;
    position: relative;
}
/* ---------- Botanical line-art divider (signature element) ---------- */
.sprig {
    position: absolute;
    opacity: 0.5;
}

    .sprig svg {
        display: block;
    }

/* ---------- Header ---------- */
.blog-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 22px;
    position: relative;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0;
}
.eyebrow::before, .eyebrow::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
}
.blog-header h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    color: var(--green-deep);
    margin-bottom: 22px;
}

    .blog-header h1 em {
        font-style: normal;
        font-weight: 600;
        color: var(--gold);
    }
.blog-header p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    text-align: center;
}
/* ---------- Category filter row ---------- */
.filter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.filter-pill {
    font-family: 'Jost',sans-serif;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 9px 20px;
    border-radius: 100px;
    border: 1px solid rgba(31,99,6,0.25);
    color: var(--green-deep);
    background: transparent;
    font-weight: 500;
    cursor: default;
}

    .filter-pill.active {
        background: var(--green);
        border-color: var(--green);
        color: var(--cream);
    }

/* ---------- Featured post ---------- */
.featured {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px -25px rgba(18,60,4,0.35);
    margin-bottom: 64px;
    border: 1px solid rgba(204,156,24,0.25);
}

.featured-media {
    background: radial-gradient(circle at 30% 25%, rgba(204,156,24,0.35), transparent 55%), linear-gradient(155deg, var(--green) 0%, var(--green-deep) 100%);
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .featured-media svg {
        width: 150px;
        height: 150px;
        opacity: 0.9;
    }

.featured-body {
    padding: 46px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.featured-body h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 29px;
    line-height: 1.28;
    color: var(--green-deep);
    margin-bottom: 14px;
}

.featured-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #544d2e;
    font-weight: 300;
    margin-bottom: 26px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12.5px;
    color: #7a7150;
    margin-bottom: 24px;
}

    .meta-row span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #7a7150;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--green-deep);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 3px;
    width: fit-content;
}

    .read-link svg {
        width: 14px;
        height: 14px;
        transition: transform .25s ease;
    }

/* ---------- Grid of posts ---------- */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(31,99,6,0.12);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .post-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 40px -28px rgba(18,60,4,0.4);
    }

.post-media {
    height: 150px;
    position: relative;
    background: var(--cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(31,99,6,0.1);
}

    .post-media svg {
        width: 56px;
        height: 56px;
    }

    .post-media.g1 {
        background: linear-gradient(150deg,#e9dfc4,#f2ebd9);
    }

    .post-media.g2 {
        background: linear-gradient(150deg,#efe3bd,#f2ebd9);
    }

    .post-media.g3 {
        background: linear-gradient(150deg,#e6ddc0,#f2ebd9);
    }

.post-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tag-sm {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}

.post-body h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.35;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.post-body p {
    font-size: 13.8px;
    line-height: 1.7;
    color: #59512f;
    font-weight: 300;
    margin-bottom: 20px;
    flex: 1;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8a815e;
    padding-top: 16px;
    border-top: 1px dashed rgba(31,99,6,0.2);
}

    .post-footer .read-more {
        color: var(--gold);
        font-weight: 600;
        text-decoration: none;
    }

/* ---------- Bottom CTA ---------- */
.blog-cta {
    margin-top: 76px;
    text-align: center;
    padding: 52px 32px;
    background: linear-gradient(155deg, var(--green-deep), var(--green));
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .blog-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 20%, rgba(204,156,24,0.28), transparent 55%);
    }

    .blog-cta h3 {
        font-family: 'Fraunces', serif;
        font-style: italic;
        font-weight: 500;
        font-size: 26px;
        color: var(--cream);
        margin-bottom: 12px;
        position: relative;
    }

    .blog-cta p {
        color: rgba(242,235,217,0.8);
        font-size: 14.5px;
        font-weight: 300;
        margin-bottom: 26px;
        position: relative;
    }

.cta-btn {
    position: relative;
    display: inline-block;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.02em;
    padding: 14px 34px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 14px 30px -12px rgba(204,156,24,0.7);
}

@media (max-width:860px) {
    .featured {
        grid-template-columns: 1fr;
    }

    .featured-media {
        min-height: 220px;
    }

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

