body {
    background: #fff;
}

.news-page {
    padding: calc(86px + 2.2rem) 0 4.5rem;
    background: #fff;
}

.news-page-hero {
    padding: 1.2rem 0 0.7rem;
}

.news-page-intro {
    max-width: 48rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.news-page-intro .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(0, 154, 68, 0.1);
    color: #0f6840;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-page-intro h1 {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.5vw, 2.95rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #173f2c;
    max-width: 14ch;
    text-wrap: balance;
}

.news-page-intro p {
    margin-top: 0.9rem;
    max-width: 40rem;
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(23, 63, 44, 0.8);
}

.news-page-feed {
    padding: 1rem 0 0;
}

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.news-article-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 154, 68, 0.12);
    box-shadow: 0 16px 36px rgba(17, 58, 35, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 154, 68, 0.2);
    box-shadow: 0 22px 42px rgba(17, 58, 35, 0.12);
}

.news-article-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-article-media {
    height: 255px;
    overflow: hidden;
    background: #eef3ef;
}

.news-article-media img,
.news-article-media video {
    width: 100%;
    height: 255px;
    object-fit: cover;
    display: block;
}

.news-article-copy {
    display: grid;
    gap: 0.95rem;
    padding: 1.5rem 1.45rem 1.65rem;
}

.news-article-tag {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: 36px;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(0, 154, 68, 0.08);
    color: #0f6840;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-article-copy h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #173f2c;
    text-wrap: balance;
}

.news-article-copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(23, 63, 44, 0.8);
}

.news-page-back {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}

.news-page-back .btn {
    min-height: 50px;
    padding: 0.85rem 1.4rem;
    border-radius: 8px;
}

.news-detail-page {
    padding: calc(86px + 2rem) 0 4.5rem;
    background: #fff;
}

.news-detail {
    max-width: 920px;
    margin: 0 auto;
}

.news-detail-head {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: #0b6b3b;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.news-back-link::before {
    content: "\2190";
    font-size: 1em;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
}

.news-detail-date {
    color: rgba(23, 63, 44, 0.68);
    font-size: 0.95rem;
    font-weight: 600;
}

.news-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #173f2c;
    text-wrap: balance;
}

.news-detail-summary {
    max-width: 52rem;
    font-size: 1.06rem;
    line-height: 1.78;
    color: rgba(23, 63, 44, 0.8);
}

.news-detail-cover {
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 2rem;
    box-shadow: 0 18px 36px rgba(17, 58, 35, 0.08);
}

.news-detail-cover img,
.news-detail-cover video {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.news-detail-cover-video {
    background: #000;
}

.news-detail-cover-video video {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.news-detail-body {
    display: grid;
    gap: 1.15rem;
}

.news-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 0.6rem;
}

.news-detail-gallery figure {
    overflow: hidden;
    border-radius: 18px;
    background: #eef3ef;
    box-shadow: 0 12px 24px rgba(17, 58, 35, 0.08);
}

.news-detail-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-detail-body p {
    font-size: 1.02rem;
    line-height: 1.82;
    color: rgba(23, 63, 44, 0.88);
}

.news-detail-body h2 {
    margin-top: 0.6rem;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #173f2c;
}

.news-detail-quote {
    margin: 0.5rem 0;
    padding: 1.15rem 1.25rem;
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 18px 18px 0;
    background: rgba(0, 154, 68, 0.05);
    color: #173f2c;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.72;
}

.news-detail-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

footer {
    margin-top: 0;
}

@media (max-width: 768px) {
    .news-page {
        padding-top: calc(86px + 1.4rem);
    }

    .news-page-intro {
        padding: 0;
    }

    .news-page-intro h1 {
        font-size: clamp(1.7rem, 9vw, 2.35rem);
        max-width: 100%;
    }

    .news-page-intro p {
        font-size: 1rem;
    }

    .news-article-card {
        border-radius: 24px;
    }

    .news-article-media {
        height: 220px;
    }

    .news-article-media img,
    .news-article-media video {
        height: 220px;
    }

    .news-detail-page {
        padding-top: calc(86px + 1.4rem);
    }

    .news-detail-title {
        font-size: clamp(1.75rem, 8vw, 2.45rem);
    }

    .news-detail-summary,
    .news-detail-body p,
    .news-detail-quote {
        font-size: 0.98rem;
    }

    .news-detail-cover {
        border-radius: 22px;
        margin-bottom: 1.5rem;
    }
}
