.page-hero--news {
    position: relative;
    overflow: hidden;
}

.page-hero--news::after {
    position: absolute;
    inset: -90% -5% -135% 48%;
    content: "";
    opacity: .52;
    background:
        repeating-radial-gradient(
            ellipse at 50% 65%,
            transparent 0 76px,
            rgb(139 218 89 / 15%) 77px 79px,
            transparent 80px 120px
        );
    pointer-events: none;
}

.page-hero--news .container {
    position: relative;
    z-index: 1;
}

.news-section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    background: var(--snow);
}

.year-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.year-filter a {
    min-width: 3.7rem;
    padding: .58rem .85rem;
    color: var(--forest-800);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.year-filter a:hover,
.year-filter a[aria-current="page"] {
    color: var(--white);
    background: var(--forest-800);
    border-color: var(--forest-800);
}

.news-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-kicker,
.news-card__date {
    margin: 0 0 .5rem;
    color: var(--forest-700);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.news-heading h2 {
    margin: 0;
    color: var(--forest-950);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: .95;
    letter-spacing: -.045em;
}

.news-heading > p {
    margin: 0 0 .4rem;
    color: var(--muted);
    font-weight: 750;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1.25rem;
}

.news-notice {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--forest-950);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
}

.news-notice p {
    margin: .35rem 0 0;
    color: var(--muted);
}

.news-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    box-shadow: 0 16px 42px rgb(4 38 28 / 8%);
}

.news-card:not(:has(.news-details[open])) {
    height: clamp(570px, 52vw, 640px);
}

.news-card__media {
    position: relative;
    aspect-ratio: 16 / 8.8;
    overflow: hidden;
    background: var(--forest-900);
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    transition: transform .35s ease;
}

.news-card:hover .news-card__media img {
    transform: scale(1.025);
}

.news-card__media > span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .38rem .65rem;
    color: var(--forest-950);
    background: var(--green-400);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900;
}

.news-card__media--text {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 75% 25%, rgb(112 197 65 / 25%), transparent 12rem),
        linear-gradient(135deg, var(--forest-800), var(--forest-950));
}

.news-card__media--text strong {
    color: rgb(255 255 255 / 10%);
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(5rem, 14vw, 9rem);
    line-height: 1;
}

.news-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.news-card h3 {
    min-height: 2.2em;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--forest-950);
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -.025em;
    hyphens: auto;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin: 1rem 0 1.4rem;
    color: var(--muted);
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-details {
    margin-top: auto;
    border-top: 1px solid var(--line);
}

.news-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 0;
    color: var(--forest-800);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.news-details summary::-webkit-details-marker {
    display: none;
}

.news-details summary span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    color: var(--white);
    background: var(--forest-800);
    border-radius: 50%;
    transition: transform .2s ease;
}

.news-details[open] summary span {
    transform: rotate(45deg);
}

.news-details__content {
    padding-top: 1.3rem;
}

.news-details__content > p {
    margin: 0 0 .9rem;
    color: #4f5f57;
}

.news-details__content table {
    width: 100%;
    margin: 1.2rem 0;
    border-collapse: collapse;
}

.news-details__content th,
.news-details__content td {
    padding: .65rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    overflow-wrap: anywhere;
}

.news-details__content th {
    color: var(--forest-800);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 520px) {
    .news-details__content th,
    .news-details__content td { padding: .6rem .25rem; }
    .news-details__content td { font-size: .85rem; }
    .news-details__content th { font-size: .65rem; letter-spacing: .02em; white-space: nowrap; }
}

.news-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
    margin-top: 1.4rem;
}

.news-gallery a {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--line);
    border-radius: .55rem;
}

.news-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.news-gallery a:hover img {
    transform: scale(1.05);
}

.news-credit {
    padding-top: .9rem;
    border-top: 1px solid var(--line);
    font-size: .78rem;
    font-style: italic;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin-top: 2rem;
}

.pagination a {
    width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    color: var(--forest-800);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-weight: 850;
    text-decoration: none;
}

.pagination a:hover,
.pagination a[aria-current="page"] {
    color: var(--white);
    background: var(--forest-800);
    border-color: var(--forest-800);
}

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

    .news-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: .5rem;
    }

    .news-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card:not(:has(.news-details[open])) {
        height: auto;
        min-height: 560px;
    }

    .news-card h3 {
        min-height: 0;
        font-size: clamp(1.35rem, 7vw, 1.8rem);
        -webkit-line-clamp: 3;
    }
}
.news-photo-open{overflow:hidden}
.news-photo-dialog{width:min(1100px,calc(100% - 1.5rem));max-height:calc(100dvh - 1.5rem);padding:1rem;border:0;border-radius:1rem;background:#073b2a;color:#fff;overflow:auto}
.news-photo-dialog::backdrop{background:rgba(0,16,12,.88)}
.news-photo-toolbar{display:flex;justify-content:flex-end;position:sticky;top:0;background:#073b2a;padding-bottom:.75rem;z-index:1}
.news-photo-dialog figure{margin:0}
.news-photo-dialog img{display:block;width:100%;height:auto;max-height:calc(100dvh - 11rem);object-fit:contain}
.news-photo-dialog figcaption{padding:.75rem .25rem;color:#fff;line-height:1.5}
