:root {
    --ink: #151a18;
    --muted: #56625c;
    --line: #dfe6df;
    --paper: #ffffff;
    --surface: #f7f9f6;
    --green: #72b62b;
    --green-dark: #173d20;
    --green-ink: #0b2818;
    --blue-dark: #011928;
    --danger: #b42318;
    --orange: #e98a15;
    --grey: #778078;
    --shadow: 0 18px 48px rgba(10, 32, 24, .12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, a, dd { overflow-wrap: anywhere; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 0 4vw;
    background: rgba(1, 25, 40, .96);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
}

/* Reading progress bar — thin green line under the nav */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, #a0d44e 100%);
    z-index: 51;
    transition: width .1s linear;
    pointer-events: none;
}

/* Sticky article mini-headline that appears after masthead scrolls out */
.article-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 49;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 4vw;
    height: 72px;
    background: rgba(1, 25, 40, .98);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-100%);
    transition: transform .25s ease;
    pointer-events: none;
}

.article-sticky-bar.visible {
    transform: translateY(0);
    pointer-events: auto;
}

.article-sticky-bar .sticky-status {
    flex-shrink: 0;
}

.article-sticky-bar .sticky-title {
    flex: 1;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: .9;
}

.article-sticky-bar .sticky-read-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: var(--green-dark);
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.article-sticky-bar .sticky-read-link .material-symbols-outlined {
    font-size: 15px;
}

@media (max-width: 820px) {
    .article-sticky-bar { display: none; }
}

.home-page .site-header {
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 20, 32, .92), rgba(0, 20, 32, .2));
    border-bottom: 0;
    backdrop-filter: none;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: .01em;
    white-space: nowrap;
}

.brand strong { color: var(--green); }
.brand small { font-size: .72em; margin-left: 2px; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav a {
    opacity: .86;
    padding: 27px 0 24px;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    opacity: 1;
    border-color: var(--green);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: block;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: -18px;
    display: none;
    min-width: 230px;
    padding: 10px;
    background: rgba(1, 25, 40, .98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: grid;
}

.nav-submenu a {
    padding: 10px 12px;
    border: 0;
    border-radius: 4px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
}

.nav-submenu a:hover {
    background: rgba(114, 182, 43, .16);
    color: #fff;
}

.nav-dropdown > a::after {
    content: 'expand_more';
    margin-left: 4px;
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    line-height: 1;
    vertical-align: -3px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang,
.donate,
.button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.lang {
    min-width: 42px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.28);
}

.lang.active,
.donate,
.button.green {
    background: linear-gradient(135deg, #8cc63f, #3d791d);
    color: #fff;
    border: 0;
}

.donate .material-symbols-outlined,
.button .material-symbols-outlined { font-size: 18px; }

.menu-toggle {
    display: none;
    margin-left: auto;
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    background: transparent;
    border-radius: 4px;
    width: 42px;
    height: 38px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: 560px;
    color: #fff;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.home-page .hero {
    min-height: 434px;
    overflow: visible;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,18,30,.92), rgba(0,31,44,.42) 52%, rgba(0,18,30,.72));
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    padding: 76px 0 0;
}

.home-page .hero-grid {
    width: calc(100% - 500px);
    max-width: none;
    margin-left: 30px;
    margin-right: 0;
    grid-template-columns: minmax(480px, 1fr) 320px;
    gap: 34px;
    padding-top: 66px;
    padding-bottom: 104px;
}

.hero h1 {
    margin: 0;
    max-width: 540px;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: clamp(68px, 9vw, 118px);
    line-height: .83;
    font-weight: 900;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}

.home-page .hero h1 {
    max-width: 380px;
    font-size: clamp(68px, 7vw, 88px);
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}

.home-page .hero h2 {
    margin-top: 14px;
    font-size: 20px;
}

.home-page .hero p {
    font-size: 15px;
    max-width: 350px;
}

.hero h1 strong { display: block; color: var(--green); }
.hero h2 { margin: 22px 0 8px; font-size: 25px; }
.hero p { max-width: 420px; font-size: 18px; line-height: 1.55; }

.hero-card,
.side-panel,
.white-card,
.area-card,
.news-card,
.evidence-card,
.form-card,
.data-table {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(22, 46, 35, .06);
}

.hero-card {
    align-self: start;
    margin-top: 34px;
    padding: 24px;
    color: #fff;
    background: rgba(4, 28, 30, .74);
    border-color: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
}

.home-page .hero-card {
    margin-top: 18px;
    padding: 18px;
    max-width: 320px;
}

.home-page .hero-card h2 {
    margin: 16px 0 8px;
    font-size: 17px;
    line-height: 1.22;
}

.home-page .hero-card p {
    font-size: 14px;
    line-height: 1.48;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #315b18;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero .text-link { color: #a6d84d; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.ghost-button {
    color: #fff;
    border: 1px solid rgba(255,255,255,.65);
}

.stats-strip {
    position: relative;
    margin-top: 56px;
    background: rgba(3, 45, 33, .92);
    border-top: 1px solid rgba(255,255,255,.16);
}

.home-page .stats-strip {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 470px);
    margin-top: 0;
}

.home-page .stats-strip .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 18px 26px;
    border-right: 1px solid rgba(255,255,255,.22);
}

.home-page .stat {
    min-height: 74px;
    padding: 12px 22px;
}

.home-page .stat .material-symbols-outlined {
    font-size: 44px;
}

.home-page .stat strong {
    font-size: 25px;
}

.home-page .stat span:last-child {
    font-size: 12px;
}

.stat:last-child { border-right: 0; }
.stat .material-symbols-outlined { color: #c3df19; font-size: 44px; }
.stat strong { display: block; font-size: 30px; line-height: 1; }
.stat span:last-child { font-size: 14px; line-height: 1.25; }

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
    margin-top: -1px;
}

.home-content {
    display: block;
    width: calc(100% - 500px);
    max-width: none;
    margin-left: 30px;
    margin-right: 0;
}

.home-lower-layout {
    display: grid;
    grid-template-columns: minmax(0, calc(100% - 440px)) 410px;
    gap: 30px;
    align-items: start;
    width: calc(100% - 60px);
    margin: 0 30px;
}

.home-lower-main {
    min-width: 0;
}

.home-article-rail {
    position: sticky;
    top: 92px;
    margin-top: 26px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(18, 44, 29, .08);
}

.home-article-rail h3 {
    margin: 0 0 14px;
    font-size: 24px;
    text-transform: uppercase;
}

.home-article-rail a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.16;
}

.home-article-rail a:hover {
    color: #315b18;
}

.home-article-rail a span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.home-projects-preview .data-table th:nth-child(3),
.home-projects-preview .data-table td:nth-child(3),
.home-projects-preview .data-table th:nth-child(5),
.home-projects-preview .data-table td:nth-child(5) {
    display: none;
}

.home-projects-preview .data-table th,
.home-projects-preview .data-table td {
    padding: 12px;
}

.home-projects-preview .project-cell {
    grid-template-columns: 76px 1fr;
}

.home-projects-preview .project-cell img {
    width: 76px;
    height: 52px;
}

.main-column,
.right-column { padding-top: 28px; }

.side-panel {
    position: sticky;
    top: 92px;
    padding: 26px;
}

.home-rail {
    position: absolute;
    top: 88px;
    right: 30px;
    z-index: 5;
    width: 410px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-card {
    text-align: center;
    padding: 18px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

.social-card .material-symbols-outlined { font-size: 34px; color: var(--green-dark); }
.brand-icon,
.play-brand {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    font-size: 32px;
}

.instagram-icon { color: #e4405f; }
.youtube-icon { color: #ff0000; }
.facebook-icon { color: #1877f2; }
.play-brand { color: #111; }
.social-card strong { display: block; margin-top: 8px; font-size: 14px; }
.social-card small { color: var(--muted); }

.home-rail h3 {
    margin: 0 0 18px;
    font-size: 16px;
    text-transform: uppercase;
}

.home-rail .social-card {
    padding: 14px 8px;
}

.feature-area {
    margin-top: 28px;
    overflow: hidden;
    color: #fff;
    background: var(--blue-dark);
    border-radius: 6px;
}

.feature-area img { height: 180px; width: 100%; object-fit: cover; }
.feature-area div { padding: 18px; }
.feature-area h3 { margin: 0 0 6px; font-size: 23px; }
.feature-area p { margin: 0 0 14px; color: rgba(255,255,255,.82); }

.home-rail .feature-area {
    margin-top: 26px;
}

.home-rail .feature-area img {
    height: 174px;
}

.alert-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    margin-top: 18px;
    padding: 20px;
    background: linear-gradient(120deg, #f4f8f0, #fff);
    border-radius: 6px;
}

.alert-card .material-symbols-outlined { color: var(--green-dark); font-size: 38px; }
.alert-card h3 { margin: 0 0 5px; font-size: 16px; }
.alert-card p { margin: 0 0 12px; color: var(--ink); font-size: 14px; }

.home-rail .alert-card {
    margin-top: 16px;
    padding: 16px;
}

.section {
    padding: 34px 0;
}

.section.compact { padding: 22px 0; }

.section-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.section-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 38px;
    height: 2px;
    background: var(--green);
    border-radius: 1px;
}

.eyebrow {
    margin: 0 0 5px;
    color: var(--green-dark);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

h1, h2, h3 {
    font-family: "Hanken Grotesk", Inter, sans-serif;
}

/* Section labels — compact editorial style */
.section-head h2 {
    margin: 0;
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 900;
}

/* Page titles keep the large display size */
.page-title h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1;
    text-transform: uppercase;
}

.section-head p,
.page-title p {
    margin: 6px 0 0;
    max-width: 630px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.white-card {
    padding: 22px;
    min-height: 160px;
}

.white-card .material-symbols-outlined {
    color: var(--green-dark);
    font-size: 40px;
}

.white-card h3 {
    margin: 12px 0 8px;
    font-size: 16px;
    text-transform: uppercase;
}

.white-card p { margin: 0; color: var(--ink); line-height: 1.45; font-size: 14px; }

.home-content .tile-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.home-content .white-card {
    min-height: 124px;
    padding: 15px;
}

.home-content .white-card .material-symbols-outlined {
    font-size: 34px;
}

.home-content .white-card h3 {
    margin: 8px 0 7px;
    font-size: 12px;
}

.home-content .white-card p {
    font-size: 12px;
    line-height: 1.35;
}

.map-preview {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    padding: 28px;
    color: #fff;
    background-position: center;
    background-size: cover;
    border-radius: 6px;
}

.map-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,27,41,.94), rgba(0,27,41,.18));
}

.map-preview > * { position: relative; }
.map-preview h2 { margin: 0 0 8px; font-size: 30px; text-transform: uppercase; }
.map-legend { position: absolute; right: 24px; bottom: 20px; padding: 14px; background: rgba(0,0,0,.58); border-radius: 6px; }
.map-legend span { display: block; margin: 6px 0; font-size: 13px; }
.dot { display: inline-block; width: 12px; height: 12px; margin-right: 8px; border-radius: 3px; vertical-align: -1px; }
.green-dot { background: #5fb63a; }
.red-dot { background: #db2f2f; }
.orange-dot { background: #f59e0b; }
.grey-dot { background: #8d9690; }
.blue-dot { background: #2f80ed; }

.real-hotspot-map {
    display: grid;
    grid-template-columns: minmax(220px, .56fr) minmax(360px, 1fr) 190px;
    gap: 22px;
    align-items: center;
    background:
        radial-gradient(circle at 25% 35%, rgba(115, 182, 43, .18), transparent 32%),
        linear-gradient(135deg, #001a29, #063020 58%, #001a29);
}

.real-hotspot-map::before {
    background:
        linear-gradient(90deg, rgba(0, 18, 30, .94), rgba(0, 18, 30, .18) 55%, rgba(0, 18, 30, .78));
}

#hotspot-map {
    width: 100%;
    height: 210px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.real-hotspot-map .leaflet-container {
    background: #d8e2d8;
}

.map-popup {
    display: grid;
    gap: 5px;
    max-width: 245px;
    font-family: Inter, Arial, sans-serif;
}

.map-popup strong {
    color: #15201a;
    font-size: 15px;
    line-height: 1.2;
}

.map-popup span {
    color: #b42318;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.map-popup p {
    margin: 0;
    color: #35433b;
    font-size: 13px;
    line-height: 1.35;
}

.map-popup small {
    color: #66736c;
    font-size: 11px;
}

.map-popup a {
    color: #315b18;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-content .map-preview {
    min-height: 132px;
    padding: 22px;
}

.home-content .map-preview h2 {
    font-size: 24px;
}

.home-content .map-preview p {
    margin: 0 0 12px;
    font-size: 13px;
}

.home-content .map-legend {
    right: 18px;
    bottom: 14px;
    padding: 10px 13px;
}

.home-content .map-legend span {
    margin: 5px 0;
    font-size: 12px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-content .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-evidence-preview .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-evidence-preview .evidence-card img {
    height: 118px;
}

.home-evidence-preview .evidence-card .card-body {
    padding: 13px;
}

.home-evidence-preview .evidence-card h3 {
    font-size: 17px;
}

.home-evidence-preview .evidence-card p {
    font-size: 13px;
}

.home-content .news-card img {
    height: 82px;
}

.home-content .news-card .card-body {
    padding: 10px;
}

.home-content .news-card h3 {
    font-size: 14px;
    line-height: 1.18;
}

.home-content .news-card p,
.home-content .news-card small,
.home-content .news-card .status-label {
    display: none;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.area-card,
.news-card,
.evidence-card {
    overflow: hidden;
}

.area-card img,
.news-card img,
.evidence-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.area-card .card-body,
.news-card .card-body,
.evidence-card .card-body {
    padding: 18px;
}

.area-card h3,
.news-card h3,
.evidence-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.area-card p,
.news-card p,
.evidence-card p {
    margin: 0 0 14px;
    color: var(--ink);
    line-height: 1.5;
}

.card-image-wrap {
    position: relative;
}

.card-badge {
    position: absolute;
    left: 12px;
    bottom: 10px;
    padding: 5px 8px;
    color: #fff;
    background: var(--green-dark);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
}

.home-protected {
    padding-top: 26px;
    border-top: 1px solid rgba(23, 61, 32, .08);
}

.home-protected .section-head {
    margin-bottom: 16px;
}

.home-protected .section-head p {
    max-width: 440px;
    font-size: 13px;
}

.home-areas-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.home-areas-grid .area-card {
    position: relative;
    border-color: #d8e2d7;
    background: linear-gradient(180deg, #ffffff, #fbfdf9);
    box-shadow: 0 10px 26px rgba(17, 43, 28, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-areas-grid .area-card:hover {
    transform: translateY(-3px);
    border-color: rgba(49, 91, 24, .36);
    box-shadow: 0 16px 34px rgba(17, 43, 28, .13);
}

.home-areas-grid .area-card img {
    height: 125px;
    filter: saturate(1.05) contrast(1.03);
}

.home-areas-grid .area-card .card-body {
    padding: 13px;
}

.home-areas-grid .area-card h3 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.1;
}

.home-areas-grid .area-card p {
    min-height: 60px;
    margin-bottom: 14px;
    color: #26342d;
    font-size: 12px;
    line-height: 1.42;
}

.home-areas-grid .area-card .text-link {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(49, 91, 24, .38);
    border-radius: 4px;
    background: #fff;
    font-size: 11px;
}

.home-areas-grid .card-badge {
    left: 10px;
    bottom: 9px;
    background: rgba(23, 61, 32, .92);
    box-shadow: 0 5px 16px rgba(0,0,0,.18);
}

.protected-hero {
    padding: 58px 0 30px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 20, 32, .97), rgba(12, 58, 35, .88)),
        radial-gradient(circle at 78% 18%, rgba(114, 182, 43, .28), transparent 30%);
}

.protected-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
    gap: 36px;
    align-items: center;
}

.protected-hero h1 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(52px, 7vw, 88px);
    line-height: .9;
    text-transform: uppercase;
}

.protected-hero-copy p:not(.eyebrow) {
    max-width: 560px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.58;
}

.protected-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.protected-feature-card {
    display: grid;
    grid-template-columns: minmax(260px, .95fr) minmax(0, 1fr);
    overflow: hidden;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    box-shadow: 0 26px 60px rgba(0,0,0,.22);
}

.protected-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.protected-feature-card div {
    padding: 28px;
}

.protected-feature-card h2 {
    margin: 16px 0 8px;
    font-size: 40px;
    line-height: 1;
}

.protected-feature-card p {
    color: var(--muted);
    line-height: 1.58;
}

.protected-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
}

.protected-stats div {
    padding: 20px 24px;
    background: rgba(0, 22, 34, .48);
}

.protected-stats strong {
    display: block;
    margin-bottom: 4px;
    color: #b8df65;
    font-size: 34px;
    line-height: 1;
}

.protected-stats span {
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.protected-page-section {
    padding-top: 34px;
}

.protected-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 22px;
}

.protected-toolbar h2 {
    margin: 0;
    font-size: 40px;
    text-transform: uppercase;
}

.protected-toolbar .filters {
    justify-content: flex-end;
    margin: 0;
}

.protected-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.protected-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(20, 47, 30, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.protected-card:hover {
    transform: translateY(-3px);
    border-color: rgba(49, 91, 24, .34);
    box-shadow: 0 22px 42px rgba(20, 47, 30, .13);
}

.protected-card-image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
}

.protected-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,24,34,.5), transparent 55%);
}

.protected-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.protected-card:hover .protected-card-image img {
    transform: scale(1.035);
}

.protected-card-image span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 6px 9px;
    color: #fff;
    background: rgba(23, 61, 32, .92);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
}

.protected-card-body {
    padding: 18px;
}

.protected-card-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 12px;
}

.protected-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.05;
}

.protected-card p {
    min-height: 72px;
    margin: 0 0 16px;
    color: #344139;
    line-height: 1.5;
}

.protected-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.protected-card dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.protected-card dd {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.image-source-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.area-detail-hero {
    padding: 48px 0 36px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 20, 32, .96), rgba(20, 74, 42, .86)),
        radial-gradient(circle at 80% 18%, rgba(114, 182, 43, .24), transparent 30%);
}

.area-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    gap: 36px;
    align-items: center;
}

.area-detail-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .9;
    text-transform: uppercase;
}

.area-detail-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.58;
}

.area-detail-hero img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(0,0,0,.24);
}

.area-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 38px;
    align-items: start;
}

.area-detail-main .content-block:first-child {
    padding-top: 10px;
}

.area-detail-main .content-block p {
    max-width: 820px;
    color: #2f3d35;
    font-size: 18px;
    line-height: 1.72;
}

.area-detail-aside {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.area-detail-aside .white-card {
    padding: 24px;
}

.area-detail-aside h3 {
    margin: 0 0 12px;
    font-size: 22px;
    text-transform: uppercase;
}

.area-detail-aside p {
    color: var(--muted);
    line-height: 1.55;
}

.projects-hero,
.project-detail-hero {
    padding: 56px 0 38px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 20, 32, .97), rgba(47, 38, 14, .88)),
        radial-gradient(circle at 78% 18%, rgba(233, 138, 21, .25), transparent 30%);
}

.projects-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 36px;
    align-items: center;
}

.projects-hero h1,
.project-detail-hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(52px, 7vw, 88px);
    line-height: .9;
    text-transform: uppercase;
}

.projects-hero p,
.project-detail-hero p {
    max-width: 590px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.58;
}

.project-feature-card {
    display: grid;
    grid-template-columns: minmax(250px, .9fr) minmax(0, 1fr);
    overflow: hidden;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    box-shadow: 0 26px 60px rgba(0,0,0,.22);
}

.project-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.project-feature-card div {
    padding: 28px;
}

.project-feature-card h2 {
    margin: 16px 0 8px;
    font-size: 38px;
    line-height: 1;
}

.project-feature-card p {
    color: var(--muted);
}

.project-page-section {
    padding-top: 34px;
}

.project-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.project-summary-grid .white-card {
    min-height: 150px;
}

.project-card-grid {
    display: grid;
    gap: 18px;
}

.project-record-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(20, 47, 30, .08);
}

.project-record-card img {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
}

.project-record-body {
    padding: 22px;
}

.project-record-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.project-record-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.05;
}

.project-record-card p {
    color: #344139;
    line-height: 1.55;
}

.project-record-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.project-record-card dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.project-record-card dd {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.project-record-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.project-record-actions .ghost-button {
    width: auto;
    margin-top: 0;
}

.project-detail-hero .article-hero-grid {
    align-items: center;
}

.project-detail-hero img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 48px rgba(0,0,0,.22);
}

.history-hero,
.history-detail-hero {
    padding: 58px 0 38px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 20, 32, .96), rgba(28, 64, 36, .88)),
        radial-gradient(circle at 80% 18%, rgba(114, 182, 43, .22), transparent 31%);
}

.history-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 36px;
    align-items: center;
}

.history-hero h1,
.history-detail-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .9;
    text-transform: uppercase;
}

.history-hero p,
.history-detail-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.58;
}

.history-feature-card {
    display: grid;
    grid-template-columns: minmax(250px, .95fr) minmax(0, 1fr);
    overflow: hidden;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    box-shadow: 0 26px 60px rgba(0,0,0,.22);
}

.history-feature-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.history-feature-card div {
    padding: 28px;
}

.history-feature-card h2 {
    margin: 16px 0 8px;
    font-size: 38px;
    line-height: 1;
}

.history-feature-card p {
    color: var(--muted);
}

.history-page-section {
    padding-top: 34px;
}

.history-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.history-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.history-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(20, 47, 30, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.history-card:hover {
    transform: translateY(-3px);
    border-color: rgba(49, 91, 24, .34);
    box-shadow: 0 22px 42px rgba(20, 47, 30, .13);
}

.history-card-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
}

.history-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,24,34,.58), transparent 58%);
}

.history-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.history-card:hover .history-card-image img {
    transform: scale(1.035);
}

.history-card-image span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.history-card-body {
    padding: 18px;
}

.history-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
}

.history-card p {
    min-height: 96px;
    color: #344139;
    line-height: 1.5;
}

.history-card dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.history-card dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.history-card dd {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.history-detail-hero img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 48px rgba(0,0,0,.22);
}

.status-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-verified,
.status-source-confirmed,
.status-location-confirmed,
.status-date-confirmed {
    color: #1d5a18;
    background: #e7f4df;
}

.status-partly-verified {
    color: #9a5300;
    background: #fff1d6;
}

.status-unverified,
.status-needs-checking {
    color: #535b55;
    background: #eef0ed;
}

.status-needs-documents {
    color: #b42318;
    background: #fde7e3;
}

.status-verified-source,
.status-verified-official-document,
.status-verified-agenda-item,
.status-verified-for-the-date-of-register {
    color: #1d5a18;
    background: #e7f4df;
}

.status-partly-verified,
.status-label[class*="partly-verified"],
.status-label[class*="needs-manual-review"],
.status-label[class*="needs-document-review"],
.status-label[class*="final-decision"],
.status-label[class*="original-pdf-not-downloaded"] {
    color: #9a5300;
    background: #fff1d6;
}

.status-under-threat {
    color: #fff;
    background: #b42318;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-image-link {
    display: block;
}

.news-page-hero {
    padding: 52px 0 36px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 20, 32, .96), rgba(7, 55, 36, .88)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.news-hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 390px;
    gap: 34px;
    align-items: center;
}

.news-hero-copy h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 76px);
    line-height: .9;
    text-transform: uppercase;
}

.news-hero-copy p:not(.eyebrow) {
    max-width: 480px;
    color: rgba(255,255,255,.82);
    line-height: 1.55;
}

.verification-panel {
    padding: 24px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.verification-panel h2 {
    margin: 0 0 10px;
    font-size: 24px;
    text-transform: uppercase;
}

.verification-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.lead-news-card {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1fr);
    overflow: hidden;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lead-news-card img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
}

.lead-news-card > div {
    padding: 28px;
}

.lead-news-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.02;
}

.lead-news-card p {
    color: var(--muted);
    line-height: 1.56;
}

.news-index {
    padding-top: 34px;
}

.newsroom-lead {
    margin-bottom: 28px;
    border-color: #d6e1d5;
    box-shadow: 0 18px 46px rgba(18, 44, 29, .12);
}

.newsroom-lead small {
    display: block;
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.45;
}

.news-section-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    padding-top: 18px;
    border-top: 2px solid #111c16;
}

.news-section-bar h2 {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
}

.news-section-bar .filters {
    justify-content: flex-end;
    margin: 0;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: start;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.newsroom-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.newsroom-four .news-card {
    display: block;
}

.newsroom-four .news-card img {
    height: 155px;
    min-height: 0;
}

.newsroom-four .news-card .card-body {
    padding: 15px;
}

.newsroom-four .news-card h3 {
    font-size: 18px;
    line-height: 1.12;
}

.newsroom-four .news-card p {
    font-size: 14px;
}

.news-list-grid .news-card {
    display: grid;
    grid-template-columns: 190px 1fr;
}

.news-list-grid .news-card img {
    height: 100%;
    min-height: 205px;
}

.news-list-grid .news-card h3 {
    font-size: 21px;
    line-height: 1.12;
}

.news-sidebar {
    position: sticky;
    top: 96px;
    padding: 24px;
}

.news-sidebar h3,
.article-aside h3 {
    margin: 0 0 12px;
    font-size: 22px;
    text-transform: uppercase;
}

.news-sidebar p,
.article-aside p {
    color: var(--muted);
    line-height: 1.55;
}

.verify-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.article-hero {
    padding: 34px 0;
    color: #fff;
    background: linear-gradient(135deg, #001a29, #12351f);
}

.article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 34px;
    align-items: center;
}

.article-hero img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 48px rgba(0,0,0,.22);
}

.article-hero h1 {
    margin: 16px 0 14px;
    max-width: 820px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: .98;
}

.article-hero p {
    max-width: 720px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.55;
}

.article-hero .news-meta {
    color: rgba(255,255,255,.76);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    color: #b7dd65;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: start;
}

.article-body {
    padding: 34px 0;
    max-width: 780px;
}

.article-body h2 {
    margin: 34px 0 10px;
    font-size: 28px;
    text-transform: uppercase;
}

.article-body p {
    color: #334139;
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 22px;
}

.article-lede {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
    color: var(--ink) !important;
    font-size: 23px !important;
    line-height: 1.48 !important;
    font-weight: 600;
    margin-bottom: 28px !important;
}

.article-lede::first-letter {
    float: left;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 3.4em;
    font-weight: 900;
    line-height: .82;
    color: var(--green-dark);
    margin: 4px 9px 0 0;
    padding: 0 2px;
}

.article-story > h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 42px 0 16px;
    padding-top: 24px;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--green-ink);
    border-top: 1px solid var(--line);
}

.article-story > h2::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 22px;
    background: var(--green);
    border-radius: 2px;
}

.article-aside {
    display: grid;
    gap: 18px;
    padding-top: 34px;
    position: sticky;
    top: 92px;
}

.article-aside .white-card {
    padding: 24px;
}

/* Report Details — authoritative dark-green top rule */
.sidebar-report-card {
    border-top: 3px solid var(--green-dark) !important;
}

.sidebar-report-card h3 {
    margin: 0 0 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green-dark);
}

/* Source & Verification — quieter footnote style */
.sidebar-footnote-card {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    box-shadow: none !important;
}

.sidebar-footnote-card h3 {
    margin: 0 0 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.sidebar-footnote-card p {
    font-size: 13px;
    color: #445048;
    line-height: 1.55;
    margin: 0;
}

.mini-facts {
    margin: 0;
}

.mini-facts div {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.mini-facts div:last-child {
    border-bottom: 0;
}

.mini-facts dt {
    margin-bottom: 5px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.mini-facts dd {
    margin: 0;
    line-height: 1.45;
}

.article-masthead {
    padding: 104px 0 38px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.article-masthead-inner {
    max-width: 980px;
}

.article-masthead .breadcrumb-link {
    color: #315b18;
}

.article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.article-breadcrumbs a {
    color: #315b18;
}

.article-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 14px;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 4px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.article-badge.red {
    color: #fff;
    background: #a51f1a;
}

.article-badge.neutral {
    color: #1f2b25;
    background: #eef1ec;
    border: 1px solid #dce5dc;
}

.article-kicker {
    margin: 20px 0 12px;
    color: #b42318;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-masthead h1 {
    margin: 0;
    max-width: 960px;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

.article-standfirst {
    max-width: 760px;
    margin: 18px 0 0;
    color: #344139;
    font-size: clamp(19px, 2.1vw, 24px);
    line-height: 1.42;
}

.article-info-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.article-info-row > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 100%;
}

.article-info-row .material-symbols-outlined {
    color: var(--green-dark);
    font-size: 17px;
    vertical-align: -3px;
}

.article-info-row > span:not(.status-label) {
    padding-right: 12px;
    border-right: 1px solid var(--line);
}

.article-media {
    position: relative;
    padding: 24px 0 0;
    margin: 0;
}

.article-media-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(14, 40, 26, .13);
}

.article-media img {
    width: 100%;
    height: clamp(260px, 34vw, 460px);
    object-fit: cover;
    display: block;
}

.article-media figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 32px 18px 14px;
    background: linear-gradient(0deg, rgba(0,12,6,.74) 0%, transparent 100%);
    color: rgba(255,255,255,.84);
    font-size: 12px;
    line-height: 1.45;
}

.article-media figcaption .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 15px;
    opacity: .7;
    margin-top: 1px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 340px;
    gap: 42px;
    align-items: start;
    padding-top: 28px;
}

.article-layout > .article-body {
    grid-column: 1;
    grid-row: 2;
}

.article-layout > .article-news-aside {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.article-left-rail {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 10px;
}

.rail-action {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px;
    color: #26342d;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rail-action .material-symbols-outlined {
    color: var(--green-dark);
    font-size: 20px;
}

.article-actions-card {
    display: grid;
    gap: 10px;
}

.article-actions-card h3 {
    margin-bottom: 2px;
}

.article-actions-card .rail-action {
    justify-content: flex-start;
}

.article-story {
    padding-top: 0;
}

.article-story p {
    color: #232c27;
}

/* Constrain body text to ~68ch for comfortable reading (~680px) */
.article-story > p {
    max-width: 700px;
}

.article-story > h2 {
    max-width: 700px;
}

.article-fact-box {
    margin: 32px 0;
    padding: 0;
    background: #f4f8f0;
    border: 1px solid #c8dfc2;
    border-radius: 8px;
    overflow: hidden;
}

.article-knowledge-box .knowledge-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: var(--green-dark);
    color: #fff;
}

.article-knowledge-box .knowledge-header h2 {
    margin: 0;
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.article-knowledge-box .knowledge-header .material-symbols-outlined {
    font-size: 18px;
    opacity: .8;
}

.article-knowledge-body {
    padding: 22px;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

.knowledge-grid div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
}

.knowledge-grid .material-symbols-outlined {
    grid-row: span 2;
    color: var(--green-dark);
    font-size: 29px;
}

.knowledge-grid strong {
    font-size: 14px;
}

.knowledge-grid p {
    margin: 4px 0 0;
    color: #2d3c34;
    font-size: 14px;
    line-height: 1.45;
}

.article-fact-box h3 {
    margin: 0 0 12px;
    font-size: 20px;
    text-transform: uppercase;
}

.article-fact-box ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 18px;
}

.article-fact-box li {
    line-height: 1.5;
}

.article-news-aside {
    padding-top: 0;
}

.article-evidence-table-wrap {
    overflow-x: auto;
    margin: 18px 0 0;
    border: 1px solid var(--line);
    border-radius: 7px 7px 0 0;
}

.article-evidence-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 13px;
}

.article-evidence-table th,
.article-evidence-table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.article-evidence-table th {
    color: #36453d;
    background: #f7faf5;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.article-evidence-table tr:last-child td {
    border-bottom: 0;
}

.evidence-view-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #315b18;
    font-weight: 700;
}

.evidence-view-link .material-symbols-outlined {
    font-size: 14px;
}

.evidence-table-footer {
    display: flex;
    justify-content: flex-end;
    padding: 10px 12px;
    background: #f7faf5;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 7px 7px;
    margin-bottom: 26px;
}

.evidence-table-footer a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #315b18;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.evidence-table-footer .material-symbols-outlined {
    font-size: 15px;
}

.article-split-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 24px;
    margin: 34px 0;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.article-split-panel h2 {
    margin-top: 0;
    font-size: 22px;
}

.article-timeline-list {
    display: grid;
    gap: 0;
    margin: 0 0 0 8px;
    padding: 0 0 0 14px;
    list-style: none;
    border-left: 2px solid #d1e8c6;
}

.article-timeline-list li {
    position: relative;
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 0 0 18px;
}

.article-timeline-list li::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--green);
}

.article-timeline-list li:last-child {
    padding-bottom: 0;
}

.article-timeline-list time {
    color: var(--green-dark);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    padding-top: 1px;
}

.article-timeline-list span {
    color: #25332b;
    line-height: 1.45;
    font-size: 14px;
}

.article-timeline-footer {
    margin-top: 16px;
}

.article-timeline-footer a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #315b18;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.article-timeline-footer .material-symbols-outlined {
    font-size: 16px;
}

.related-evidence-section {
    padding-top: 24px;
}

.article-submit-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 24px;
    background: #f5f8f1;
    border: 1px solid #d8e6d2;
    border-radius: 8px;
}

.article-submit-cta h2 {
    margin: 0 0 8px;
    font-size: 25px;
}

.article-submit-cta p {
    margin: 0;
    color: #35443c;
}

.article-missing-list {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.article-missing-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    color: #2d3c34;
    line-height: 1.45;
}

.article-missing-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 1px;
    background: var(--danger);
    border-radius: 50%;
}

.article-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.article-share-label {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.article-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .15s;
}

.article-share-btn:hover { opacity: .82; }
.article-share-btn.fb { background: #1877f2; color: #fff; }
.article-share-btn.tw { background: #111; color: #fff; }
.article-share-btn.wa { background: #25d366; color: #fff; }
.article-share-btn.lk { background: #eef1ec; color: #2a3a30; border: 1px solid #d8e6d2; }
.article-share-btn .material-symbols-outlined { font-size: 17px; }
.article-share-btn .fa-brands { font-size: 14px; }

.article-related-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 3px 0 0;
}

.article-related-area-tag {
    display: inline-block;
    padding: 3px 8px;
    color: #1f3a28;
    background: #eef6e8;
    border: 1px solid #d0e8c5;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.article-related-area-tag.link:hover {
    background: #dff0d3;
    text-decoration: underline;
}

.article-safety-reminder {
    border-left: 4px solid var(--danger);
    background: #fff8f7 !important;
}

.article-safety-reminder h3 {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a01f1a;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.article-safety-reminder h3 .material-symbols-outlined {
    font-size: 19px;
    color: var(--danger);
}

.article-safety-reminder p {
    margin: 0;
    color: #3c2222;
    font-size: 13px;
    line-height: 1.55;
}

.article-submit-panel h3 {
    margin: 0 0 8px;
}

.article-submit-panel p {
    margin: 0 0 16px;
    color: #344139;
    font-size: 14px;
    line-height: 1.5;
}

.article-submit-panel .button {
    width: 100%;
    justify-content: center;
}

.article-methodology-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    color: #315b18;
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-color: #c4dbb6;
}

.article-methodology-link .material-symbols-outlined {
    font-size: 16px;
}

.source-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 18px;
}

.source-link-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    color: var(--green-dark);
    background: #eef7e8;
    border: 1px solid #c8dfc2;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
}

.source-link-chip .material-symbols-outlined {
    font-size: 14px;
}

.evidence-brief-body h2 {
    margin-top: 34px;
}

.evidence-link-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin: 30px 0 34px;
    padding: 22px;
    background: #f7faf5;
    border: 1px solid #d9e5d4;
    border-left: 5px solid var(--green);
    border-radius: 8px;
}

.evidence-link-panel h2 {
    margin: 4px 0 8px;
}

.evidence-link-panel p {
    margin: 0;
    color: #334139;
}

.evidence-link-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.source-brief-box {
    margin: 26px 0 32px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(14, 40, 26, .07);
}

.source-brief-box h2 {
    margin-top: 0;
}

.source-brief-box ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.source-brief-box li {
    line-height: 1.5;
}

.small-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.related-news-section {
    padding-top: 22px;
}

/* ─── Form success / error banners ─── */

.form-success-banner,
.form-error-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 8px;
    margin-bottom: 28px;
}

.form-success-banner {
    background: #eef8e6;
    border: 1px solid #b8dcaa;
    border-left: 4px solid var(--green);
}

.form-error-banner {
    background: #fff8f7;
    border: 1px solid #f0cfc9;
    border-left: 4px solid var(--danger);
}

.form-success-banner .material-symbols-outlined { color: var(--green); font-size: 28px; flex-shrink: 0; }
.form-error-banner .material-symbols-outlined   { color: var(--danger); font-size: 28px; flex-shrink: 0; }

.form-success-banner h2,
.form-error-banner h2 { margin: 0 0 6px; font-size: 18px; }
.form-success-banner p,
.form-error-banner p  { margin: 0; font-size: 15px; line-height: 1.55; }

/* ─── Form improvements ─── */

.required-star { color: var(--danger); font-weight: 900; }

.full-width-btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

label small {
    display: inline;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    margin-left: 4px;
}

.form-note.full { font-size: 13px; color: var(--muted); margin: -10px 0 0; }

/* ─── About page ─── */

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
    align-items: start;
}

.about-mission-band {
    padding: 28px 32px;
    background: var(--green-dark);
    border-radius: 8px;
    margin-bottom: 36px;
}

.about-mission-band p {
    margin: 0;
    color: #fff;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.35;
    font-style: italic;
}

.about-section-heading {
    margin: 36px 0 18px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-top: 1px solid var(--line);
    color: var(--green-ink);
}

.about-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-tile {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.about-tile .material-symbols-outlined {
    font-size: 28px;
    color: var(--green-dark);
    margin-bottom: 8px;
    display: block;
}

.about-tile h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 800;
}

.about-tile p {
    margin: 0;
    font-size: 13px;
    color: #3d4d44;
    line-height: 1.55;
}

.about-methodology {
    display: grid;
    gap: 14px;
}

.about-methodology > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #f7faf5;
    border: 1px solid #d8e6d2;
    border-radius: 8px;
}

.about-methodology .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 26px;
    color: var(--green-dark);
}

.about-methodology strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.about-methodology p {
    margin: 0;
    font-size: 13px;
    color: #3d4d44;
    line-height: 1.5;
}

.about-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.about-area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #eef6e8;
    border: 1px solid #c5ddb5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    transition: background .15s;
}

.about-area-chip:hover { background: #dff0d0; }
.about-area-chip .material-symbols-outlined { font-size: 16px; }

.about-contact-list {
    display: grid;
    gap: 12px;
}

.about-contact-list > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.about-contact-list > div:last-child { border-bottom: 0; }

.about-contact-list .material-symbols-outlined {
    font-size: 20px;
    color: var(--green-dark);
    flex-shrink: 0;
    margin-top: 1px;
}

.about-contact-list strong {
    display: block;
    font-size: 12px;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    margin-bottom: 3px;
}

.about-contact-list a {
    font-size: 14px;
    font-weight: 600;
    color: #315b18;
}

.about-sources-list {
    display: grid;
    gap: 6px;
    margin: 4px 0 0;
    padding-left: 18px;
}

.about-sources-list li {
    font-size: 13px;
    color: #3d4d44;
    line-height: 1.45;
}

.about-sidebar .white-card { padding: 22px; margin-bottom: 18px; }
.about-sidebar .white-card:last-child { margin-bottom: 0; }

/* ─── Contact page ─── */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
    align-items: start;
}

.contact-sidebar .white-card { padding: 22px; margin-bottom: 18px; }
.contact-sidebar .white-card:last-child { margin-bottom: 0; }

/* ─── Responsive for about/contact ─── */
@media (max-width: 1100px) {
    .about-layout,
    .contact-layout { grid-template-columns: 1fr; }
    .about-sidebar,
    .contact-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .about-sidebar .white-card,
    .contact-sidebar .white-card { margin-bottom: 0; }
}

@media (max-width: 820px) {
    .about-layout,
    .contact-layout { grid-template-columns: 1fr; }
    .about-sidebar,
    .contact-sidebar { grid-template-columns: 1fr; }
    .about-tiles { grid-template-columns: 1fr; }
    .news-feed-list { grid-template-columns: 1fr; }
}

/* News pagination */
.news-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    color: var(--green-dark);
    background: #eef6e8;
    border: 1px solid #c8ddb8;
    border-radius: 6px;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .15s;
}

.pagination-btn:hover {
    background: #ddefd0;
}

.pagination-btn .material-symbols-outlined {
    font-size: 16px;
}

.pagination-info {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* News category list in sidebar */
.news-category-list {
    display: grid;
    gap: 2px;
    margin-top: 4px;
}

.news-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink);
}

.news-category-item:last-child { border-bottom: 0; }

.news-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    padding: 0 6px;
    background: #eef6e8;
    border-radius: 10px;
    color: var(--green-dark);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
}

@media (max-width: 820px) {
    .news-pagination { flex-direction: column; gap: 10px; text-align: center; }
    .pagination-btn { width: 100%; justify-content: center; }
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.related-news-grid .news-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.related-news-grid .news-card img {
    height: 180px;
    min-height: 0;
}

.related-news-grid .news-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.news-clean-hero {
    padding: 54px 0 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.news-clean-hero h1 {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(50px, 7vw, 82px);
    line-height: .9;
    text-transform: uppercase;
}

.news-clean-hero p:not(.eyebrow) {
    max-width: 780px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.news-top-filters {
    margin-top: 0;
}

.news-feed-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
    align-items: start;
}

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

.news-feed-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(18, 44, 29, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.news-feed-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(18, 44, 29, .11);
}

.news-feed-image {
    display: block;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-feed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.news-feed-card:hover .news-feed-image img {
    transform: scale(1.04);
}

.news-feed-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 20px;
}

.news-feed-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.news-feed-labels > span:first-child {
    padding: 5px 9px;
    color: #315b18;
    background: #eaf5e1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-feed-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.04;
}

.news-feed-card p {
    color: #3f4b45;
    line-height: 1.55;
}

.news-feed-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-feed-footer span,
.news-feed-footer a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-feed-footer .material-symbols-outlined {
    font-size: 15px;
}

.news-feed-footer a {
    color: #315b18;
}

.news-feed-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.verification-guide-card,
.top-stories-card {
    padding: 24px;
}

.verification-guide-card h3,
.top-stories-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--green-dark);
    font-size: 23px;
    text-transform: uppercase;
}

.verification-guide-card p {
    color: var(--muted);
    line-height: 1.55;
}

.verify-guide-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.verify-guide-list div {
    display: grid;
    gap: 7px;
}

.verify-guide-list div span:last-child {
    color: #35433b;
    font-size: 13px;
    line-height: 1.4;
}

.top-stories-card a {
    display: block;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.top-stories-card strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.2;
}

.top-stories-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.article-source-widget {
    padding: 24px;
}

.article-source-widget a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.article-source-widget .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--green-dark);
    background: #eef6e9;
    border-radius: 6px;
}

.article-source-widget strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.article-source-widget small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 26px;
}

.filter-chip {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.filter-chip.active { background: var(--green-dark); color: #fff; }
.filter-chip:focus-visible {
    outline: 3px solid rgba(114, 182, 43, .36);
    outline-offset: 2px;
}

.data-table {
    width: 100%;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th,
.data-table td {
    padding: 15px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.data-table th {
    color: #3f4b45;
    background: #fbfcfb;
    font-size: 12px;
    text-transform: uppercase;
}

.project-cell {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: center;
}

.project-cell img {
    width: 86px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
}

.project-cell strong { display: block; }
.project-cell small { color: var(--muted); }

.submit-band {
    position: relative;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.submit-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,25,38,.94), rgba(0,25,38,.6));
}

.submit-inner {
    position: relative;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(250px, 420px);
    gap: 34px;
    align-items: center;
    min-height: 210px;
}

.submit-icon {
    display: grid;
    place-items: center;
    width: 104px;
    height: 104px;
    border: 2px solid var(--green);
    border-radius: 50%;
}

.submit-icon .material-symbols-outlined { font-size: 54px; color: var(--green); }
.check-list { display: grid; gap: 10px; }
.check-list span { display: flex; gap: 8px; align-items: center; }
.check-list .material-symbols-outlined { color: var(--green); font-size: 18px; }

.page-hero {
    padding: 58px 0 32px;
    background: linear-gradient(135deg, #f8faf7, #eef5ea);
    border-bottom: 1px solid var(--line);
}

.page-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.detail-hero {
    position: relative;
    min-height: 420px;
    margin: 28px 0;
    overflow: hidden;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.1));
}

.detail-hero-content {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 34px;
    color: #fff;
}

.detail-hero h1 {
    margin: 8px 0;
    font-size: clamp(48px, 8vw, 82px);
    line-height: .9;
    font-weight: 900;
}

.tab-row {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
}

.tab-row a {
    flex: 0 0 auto;
    padding: 16px 0 14px;
    border-bottom: 3px solid transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.tab-row a.active,
.tab-row a:hover { color: var(--green-dark); border-color: var(--green-dark); }

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.content-block {
    padding: 32px 0 28px;
    border-bottom: 1px solid var(--line);
}

.content-block:last-child {
    border-bottom: 0;
}

/* Editorial section heading — matches article body h2 style */
.content-block h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--green-ink);
    text-transform: none;
    letter-spacing: 0;
}

.content-block h2::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 20px;
    background: var(--green);
    border-radius: 2px;
}

.content-block p {
    max-width: 720px;
    color: #2f3d35;
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.content-block p:last-child { margin-bottom: 0; }

/* Area quick-facts — 4-cell icon grid inside Overview */
.area-quick-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.area-quick-facts-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f4f8f0;
    border: 1px solid #d0e6c8;
    border-radius: 8px;
}

.area-quick-facts-item .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--green-dark);
    margin-top: 1px;
}

.area-quick-facts-item strong {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-bottom: 4px;
}

.area-quick-facts-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

/* Biodiversity / threats list items */
.area-feature-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.area-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
    color: #2d3a30;
    line-height: 1.45;
}

.area-feature-list li .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 17px;
    color: var(--green-dark);
    margin-top: 1px;
}

/* Threats panel */
.area-threat-panel {
    margin-top: 20px;
    padding: 18px 20px;
    background: #fff8f7;
    border: 1px solid #f0cfc9;
    border-left: 4px solid var(--danger);
    border-radius: 8px;
}

.area-threat-panel-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: #9e1f1a;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.area-threat-panel-header .material-symbols-outlined {
    font-size: 17px;
}

.area-threat-panel p {
    margin: 0;
    color: #3c2020;
    font-size: 14px;
    line-height: 1.55;
}

/* Documents needed — checklist */
.area-docs-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 20px;
    padding: 0;
    list-style: none;
}

.area-docs-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: #2a3830;
    line-height: 1.45;
}

.area-docs-list li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background: #f5f5f5;
    border: 2px solid #c8d8c4;
    border-radius: 3px;
}

.area-docs-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f5f8f1;
    border: 1px solid #d5e6ce;
    border-radius: 8px;
}

.area-docs-cta .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 28px;
    color: var(--green-dark);
}

.area-docs-cta p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #334139;
    line-height: 1.45;
}

/* Area detail hero improvements */
.area-detail-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    font-weight: 700;
}

.area-detail-breadcrumbs a {
    color: rgba(255,255,255,.7);
}

.area-detail-breadcrumbs a:hover { color: #fff; }

.area-detail-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.area-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 20px 0 24px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.area-hero-stats-item {
    flex: 1;
    min-width: 120px;
    padding: 0 18px 0 0;
}

.area-hero-stats-item + .area-hero-stats-item {
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.15);
}

.area-hero-stats-item span {
    display: block;
    color: rgba(255,255,255,.56);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.area-hero-stats-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* Area detail aside — styled like report-details sidebar */
.area-detail-aside h3 {
    margin: 0 0 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green-dark);
}

.area-detail-aside .white-card {
    padding: 22px;
}

.area-detail-aside .sidebar-report-card {
    border-top: 3px solid var(--green-dark);
}

/* Related news in area aside */
.area-related-news {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.area-related-news a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
}

.area-related-news a:first-child { border-top: 0; padding-top: 0; }

.area-related-news a span {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.area-related-news a:hover { color: #315b18; }

/* Tab row improvements */
.area-detail-tabs {
    position: sticky;
    top: 72px;
    z-index: 10;
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    box-shadow: 0 2px 8px rgba(14, 40, 26, .06);
}

@media (max-width: 820px) {
    .area-quick-facts { grid-template-columns: 1fr; }
    .area-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .area-hero-stats-item { border-left: 0 !important; padding-left: 0 !important; }
    .area-docs-cta { flex-direction: column; align-items: flex-start; }
    .area-detail-tabs { position: static; }
}

.fact-list {
    display: grid;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.fact-list div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.fact-list dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.fact-list dd { margin: 0; }

.quick-facts {
    position: sticky;
    top: 98px;
    padding: 24px;
}

.quick-facts h3 { margin: 0 0 20px; font-size: 28px; text-transform: uppercase; }
.quick-facts ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.quick-facts li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; color: var(--muted); line-height: 1.45; }
.quick-facts .material-symbols-outlined { color: var(--green-dark); }
.quick-facts li.danger .material-symbols-outlined { color: var(--danger); }

.icon-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    text-align: center;
}

.icon-row div {
    padding: 18px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    font-weight: 800;
}

.icon-row .material-symbols-outlined {
    display: block;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: 38px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.media-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.media-hub-hero {
    padding: 64px 0 38px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(1,25,40,.96), rgba(12,58,35,.86)),
        url("https://commons.wikimedia.org/wiki/Special:FilePath/Vjosa-Narta%20Lagoon%2C%20Vlora.jpg?width=1600");
    background-position: center;
    background-size: cover;
}

.media-hub-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: end;
}

.media-hub-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(54px, 8vw, 96px);
    line-height: .88;
}

.media-hub-hero p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255,255,255,.86);
    font-size: 19px;
    line-height: 1.55;
}

.media-hub-hero .media-policy-lede {
    margin-top: 14px;
    padding-left: 16px;
    border-left: 4px solid var(--green);
    color: rgba(255,255,255,.92);
}

.media-hub-rules {
    padding: 22px;
    background: rgba(1,25,40,.84);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
}

.media-hub-rules h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.media-hub-rules ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,.84);
}

.media-hub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.media-verification-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.media-inclusion-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    margin: 0 0 22px;
    padding: 18px;
    background: #fff;
    border: 1px solid #cbdcc7;
    border-left: 5px solid var(--green);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(20,47,30,.06);
}

.media-inclusion-note > .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--green-dark);
    background: #eef7e8;
    border-radius: 8px;
    font-size: 26px;
}

.media-inclusion-note h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.media-inclusion-note p {
    margin: 0;
    color: #334139;
    line-height: 1.5;
}

.media-verification-strip div {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.media-verification-strip strong {
    display: block;
    color: var(--green-dark);
    font-size: 28px;
}

.media-verification-strip span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.media-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.media-platform-top {
    margin-top: 0;
    margin-bottom: 26px;
}

.media-platform-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(20,47,30,.06);
}

.media-platform-card.instagram { border-top: 5px solid #c13584; }
.media-platform-card.youtube { border-top: 5px solid #ff0033; }
.media-platform-card.facebook { border-top: 5px solid #1877f2; }

.media-platform-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.media-platform-head > .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: var(--green-dark);
    border-radius: 8px;
    font-size: 28px;
}

.media-platform-card.instagram .media-platform-head > .material-symbols-outlined { background: #c13584; }
.media-platform-card.youtube .media-platform-head > .material-symbols-outlined { background: #ff0033; }
.media-platform-card.facebook .media-platform-head > .material-symbols-outlined { background: #1877f2; }

.media-platform-head p {
    margin: 0 0 2px;
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.media-platform-head h2 {
    margin: 0;
}

.media-platform-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.media-platform-card.instagram .media-platform-link { color: #c13584; }
.media-platform-card.youtube .media-platform-link { color: #ff0033; }
.media-platform-card.facebook .media-platform-link { color: #1877f2; }

.media-video-section {
    margin-bottom: 26px;
}

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.media-video-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(20,47,30,.07);
}

.media-video-card.youtube {
    border-top: 5px solid #ff0033;
}

.media-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #06131c;
}

.media-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.media-video-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.media-source-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.media-source-row > span:first-child {
    color: #ff0033;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.media-video-body h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
}

.media-video-body p {
    color: #334139;
    line-height: 1.5;
}

.media-video-body .text-link {
    margin-top: auto;
}

.media-video-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.media-video-facts dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.media-video-facts dd {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 800;
}

.media-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.media-social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.media-social-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(20,47,30,.07);
}

.media-social-card.instagram { border-top: 5px solid #c13584; }
.media-social-card.facebook { border-top: 5px solid #1877f2; }

.media-social-frame {
    display: grid;
    place-items: start center;
    height: 520px;
    overflow: auto;
    background: #f4f6f3;
    border-bottom: 1px solid var(--line);
}

.media-social-frame iframe {
    width: 100%;
    max-width: 500px;
    min-height: 500px;
    border: 0;
}

.instagram-frame {
    padding: 10px;
}

.instagram-frame .instagram-media {
    min-width: 0 !important;
    max-width: 500px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.facebook-frame {
    padding: 0;
}

.media-social-card.instagram .media-source-row > span:first-child { color: #c13584; }
.media-social-card.facebook .media-source-row > span:first-child { color: #1877f2; }

.media-queue-section {
    display: none;
}

.social-preview-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(20,47,30,.06);
}

.social-preview-card.instagram { border-top: 5px solid #c13584; }
.social-preview-card.facebook { border-top: 5px solid #1877f2; }

.social-preview-card > .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    color: #fff;
    border-radius: 8px;
    font-size: 28px;
}

.social-preview-card.instagram > .material-symbols-outlined { background: #c13584; }
.social-preview-card.facebook > .material-symbols-outlined { background: #1877f2; }

.social-preview-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.12;
}

.social-preview-card p {
    color: #334139;
    line-height: 1.5;
}

.social-preview-card .status-label {
    width: max-content;
    margin-top: auto;
}

.media-embed-placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    margin: 18px 0;
    padding: 24px;
    text-align: center;
    background: #f7faf5;
    border: 1px dashed #b9c9b6;
    border-radius: 8px;
}

.media-embed-placeholder .material-symbols-outlined {
    color: var(--green-dark);
    font-size: 42px;
}

.media-embed-placeholder p {
    max-width: 480px;
    margin: 6px 0 0;
    color: var(--muted);
}

.platform-archive-hero {
    padding: 105px 0 38px;
    background: #f7faf6;
    border-bottom: 1px solid var(--line);
}

.platform-archive-inner {
    display: grid;
    gap: 24px;
}

.platform-title-row {
    display: grid;
    grid-template-columns: auto minmax(0, 760px);
    gap: 18px;
    align-items: start;
}

.platform-title-row > .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    border-radius: 10px;
    font-size: 34px;
}

.platform-archive-hero.instagram .platform-title-row > .material-symbols-outlined { background: #c13584; }
.platform-archive-hero.youtube .platform-title-row > .material-symbols-outlined { background: #ff0033; }
.platform-archive-hero.facebook .platform-title-row > .material-symbols-outlined { background: #1877f2; }

.platform-title-row h1 {
    margin: 0 0 12px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
}

.platform-title-row p:last-child {
    max-width: 720px;
    color: #243029;
    font-size: 18px;
    line-height: 1.45;
}

.platform-archive-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.platform-filter-panel {
    position: static;
    display: grid;
    grid-template-columns: auto repeat(3, minmax(170px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17,37,28,.06);
}

.platform-filter-panel h2 {
    margin: 0;
    font-size: 18px;
}

.platform-filter-panel label {
    display: grid;
    gap: 6px;
    margin-bottom: 0;
    color: #4d5b52;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.platform-filter-panel p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.media-filter-count {
    justify-self: end;
    padding: 9px 12px;
    color: var(--green-dark);
    background: #eef7e8;
    border: 1px solid #c8dfc2;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.archive-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card-hidden {
    display: none !important;
}

.media-cue-list {
    display: grid;
    gap: 10px;
}

.media-cue-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 14px;
    background: #fbfcfb;
    border: 1px solid var(--line);
    border-radius: 7px;
}

.media-cue-list p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

#albania-map {
    width: 100%;
    height: 520px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-card {
    padding: 28px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
    font-size: 13px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid #cbd5ca;
    border-radius: 4px;
    background: #fff;
    font: inherit;
}

textarea { min-height: 140px; resize: vertical; }
.full { grid-column: 1 / -1; }

@media (max-width: 720px) {
    .archive-video-grid,
    .media-social-grid {
        grid-template-columns: 1fr !important;
    }

    .platform-filter-panel {
        grid-template-columns: 1fr !important;
    }

    .media-filter-count {
        justify-self: stretch;
        text-align: center;
    }
}

.form-note {
    margin: -4px 0 4px;
    padding: 12px 14px;
    color: #314136;
    background: #eef6e9;
    border-left: 4px solid var(--green);
    border-radius: 4px;
    line-height: 1.5;
}

.submission-safety-note {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #dce5dc;
    border-left: 5px solid #d39b24;
    border-radius: 8px;
}

.submission-safety-note .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #8a5b00;
    background: #fff4d8;
    border-radius: 8px;
    font-size: 32px;
}

.submission-safety-note h2 {
    margin: 0 0 7px;
    font-size: 20px;
}

.submission-safety-note p {
    margin: 0 0 8px;
    color: #314136;
    line-height: 1.55;
}

.submission-safety-note p:last-child {
    margin-bottom: 0;
    font-weight: 800;
}

.mission-band {
    display: grid;
    place-items: center;
    min-height: 250px;
    padding: 46px 20px;
    color: #fff;
    text-align: center;
    background-position: center;
    background-size: cover;
}

.mission-band p {
    margin: 0;
    max-width: 940px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
    font-family: "Hanken Grotesk", Inter, sans-serif;
    font-weight: 700;
}

.mission-band strong { color: var(--green); }
.mission-band .material-symbols-outlined { margin-top: 18px; color: var(--green); font-size: 46px; }

.site-footer {
    color: #dbe7e0;
    background: #001a29;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 54px 0 34px;
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.footer-grid a:not(.brand):not(.button) {
    display: block;
    margin: 8px 0;
    color: #dbe7e0;
}

.footer-grid p { color: #dbe7e0; line-height: 1.5; }
.footer-grid .muted { color: #aabbb3; font-size: 14px; }
.footer-brand { color: #fff; }
.language-box { margin-top: 14px; display: flex; align-items: center; gap: 8px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    color: #9fb0a9;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
}

.footer-bottom a {
    color: #dbe7e0;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

.legal-page {
    display: grid;
    gap: 16px;
    max-width: 900px;
}

.legal-card {
    padding: 26px;
}

.legal-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
    text-transform: uppercase;
}

.legal-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.evidence-hero,
.evidence-item-hero,
.evidence-topic-hero {
    padding: 56px 0 34px;
    background: linear-gradient(135deg, #f7faf5, #eaf3e5);
    border-bottom: 1px solid var(--line);
}

.evidence-library-page {
    padding-top: 28px;
}

.evidence-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.evidence-standard {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 22px;
    padding: 20px;
    background: #fff;
    border: 1px solid #dce5dc;
    border-left: 5px solid var(--green);
    border-radius: 8px;
}

.evidence-standard .material-symbols-outlined {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--green-dark);
    background: #edf6ea;
    border-radius: 8px;
    font-size: 32px;
}

.evidence-standard h2 {
    margin: 0 0 7px;
    font-size: 20px;
}

.evidence-standard p {
    margin: 0;
    color: #304239;
    font-size: 15px;
    line-height: 1.55;
}

.evidence-stats-row div {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.evidence-stats-row strong {
    display: block;
    color: var(--green-dark);
    font-size: 34px;
    line-height: 1;
}

.evidence-stats-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.evidence-access-panel {
    display: grid;
    grid-template-columns: 190px 190px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    margin: 0 0 24px;
}

.evidence-access-panel > div,
.evidence-access-panel > p {
    margin: 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.evidence-access-panel > div {
    display: grid;
    gap: 6px;
}

.evidence-access-panel .material-symbols-outlined {
    color: var(--green-dark);
}

.evidence-access-panel strong {
    color: var(--green-dark);
    font-size: 32px;
    line-height: 1;
}

.evidence-access-panel span:last-child {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.evidence-access-panel p {
    color: #304239;
    line-height: 1.55;
}

.evidence-filter-row {
    margin-bottom: 22px;
}

.evidence-collection-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.evidence-collection-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
    padding: 18px;
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 8px;
}

.evidence-collection-card > .material-symbols-outlined {
    color: var(--green-dark);
    font-size: 34px;
}

.evidence-collection-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.08;
}

.evidence-collection-card p {
    margin: 0 0 12px;
    color: #405148;
    font-size: 13px;
    line-height: 1.42;
}

.evidence-collection-card strong {
    color: var(--green-dark);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.evidence-collection-card .text-link {
    margin-top: auto;
}

.evidence-source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

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

.evidence-source-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(20, 47, 30, .06);
}

.evidence-source-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.evidence-source-meta > span:last-child {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.evidence-source-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.08;
}

.evidence-source-card p {
    color: #344139;
    line-height: 1.48;
}

.evidence-source-card dl {
    display: grid;
    gap: 8px;
    margin: auto 0 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.evidence-source-card dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.evidence-source-card dd {
    margin: 3px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.evidence-card-actions {
    display: grid;
    gap: 9px;
}

.mini-source-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 10px;
    color: var(--green-dark);
    background: #f4f8f0;
    border: 1px solid #d8e6d2;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.mini-source-link.official {
    color: #fff;
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.evidence-action,
.evidence-dark-link {
    width: 100%;
    margin-top: 10px;
}

.evidence-dark-link {
    color: var(--ink);
    border: 1px solid var(--line);
}

.evidence-topic-layout .article-body {
    max-width: none;
}

.evidence-article-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.evidence-article-row {
    padding: 22px;
    background: #fff;
    border: 1px solid #dce5dc;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(20, 47, 30, .05);
}

.evidence-article-row h2 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.08;
}

.evidence-article-row p {
    margin: 0 0 16px;
    color: #334139;
    line-height: 1.55;
}

.evidence-row-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.evidence-row-facts dt {
    color: var(--muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.evidence-row-facts dd {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 800;
}

.evidence-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.evidence-row-actions .button,
.evidence-row-actions .ghost-button {
    width: auto;
    margin-top: 0;
}

/* ─── Global card interaction improvements ─── */

.news-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(49, 91, 24, .3);
    box-shadow: 0 18px 40px rgba(20, 47, 30, .11);
}

.news-card img {
    transition: transform .28s ease;
}

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

.news-card img,
.evidence-card img {
    height: 200px;
}

.news-section-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.news-section-bar h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Evidence cards */
.evidence-source-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.evidence-source-card:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 91, 24, .28);
    box-shadow: 0 16px 36px rgba(20, 47, 30, .1);
}

.evidence-collection-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.evidence-collection-card:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 91, 24, .28);
    box-shadow: 0 14px 30px rgba(20, 47, 30, .09);
}

/* Project cards */
.project-record-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.project-record-card:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 91, 24, .28);
    box-shadow: 0 18px 40px rgba(20, 47, 30, .11);
}

/* Tile grid (What We Do, etc.) */
.tile-grid .white-card {
    transition: transform .18s ease, box-shadow .18s ease;
    min-height: 0;
}

.tile-grid .white-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(20, 47, 30, .1);
}

/* News feed card image zoom */
.news-feed-image img {
    transition: transform .3s ease;
}

/* ─── Button improvements ─── */

.button,
.ghost-button {
    transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
}

.button:hover,
.ghost-button:hover {
    opacity: .88;
    transform: translateY(-1px);
}

.button.green:hover {
    opacity: 1;
    box-shadow: 0 6px 20px rgba(61, 121, 29, .35);
}

/* ─── Text-link underline animation ─── */

.text-link {
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .2s ease;
}

.text-link:hover::after {
    width: calc(100% - 20px);
}

/* ─── Hero section improvements ─── */

.page-hero {
    padding: 64px 0 38px;
    background: linear-gradient(145deg, #f0f6ec 0%, #e6f2df 50%, #f5faf2 100%);
    border-bottom: 2px solid #d5e8ce;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(114, 182, 43, .08) 0%, transparent 70%);
    pointer-events: none;
}

.page-title h1 {
    margin: 0;
    font-size: clamp(28px, 4.5vw, 46px);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

/* Evidence library hero */
.evidence-hero,
.evidence-item-hero,
.evidence-topic-hero {
    padding: 52px 0 36px;
    background: linear-gradient(145deg, #f0f6ec 0%, #e6f2df 60%, #f5faf2 100%);
    border-bottom: 2px solid #d5e8ce;
    position: relative;
    overflow: hidden;
}

.evidence-hero::before,
.evidence-item-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(114, 182, 43, .07) 0%, transparent 70%);
    pointer-events: none;
}

/* Evidence stats row — larger numbers, more breathing room */
.evidence-stats-row {
    gap: 16px;
    margin-bottom: 24px;
}

.evidence-stats-row div {
    padding: 22px 20px;
    border-radius: 10px;
}

.evidence-stats-row strong {
    font-size: 38px;
}

/* ─── Metadata readability improvements ─── */

.mini-facts dt {
    font-size: 10px;
    letter-spacing: .04em;
    margin-bottom: 3px;
}

.mini-facts dd {
    font-size: 14px;
    font-weight: 600;
}

/* ─── Protected areas hero accent ─── */

.protected-hero {
    position: relative;
    overflow: hidden;
}

.protected-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, transparent 60%);
}

/* ─── Project feature / section polish ─── */

.project-feature-card {
    border-radius: 10px;
    overflow: hidden;
}

.projects-hero {
    position: relative;
    overflow: hidden;
}

/* ─── History hero accent ─── */

.history-hero {
    position: relative;
    overflow: hidden;
}

.history-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f80ed 0%, transparent 60%);
}

/* ─── Smooth anchor scroll ─── */

html {
    scroll-behavior: smooth;
}

/* ─── Focus ring improvements (accessibility) ─── */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
    border-radius: 3px;
}

@media (max-width: 1100px) {
    .site-header { gap: 14px; }
    .main-nav { gap: 12px; font-size: 12px; }
    .header-actions .donate { display: none; }
    .home-page .site-header { position: sticky; background: rgba(1, 25, 40, .96); }
    .home-page .hero { min-height: auto; overflow: hidden; }
    .home-page .hero-grid,
    .home-content,
    .home-lower-layout {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
    }
    .home-lower-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .home-article-rail {
        position: static;
        margin-top: 0;
        margin-bottom: 24px;
    }
    .home-page .hero-grid { grid-template-columns: 1fr; padding-bottom: 0; }
    .home-rail {
        position: static;
        width: min(1180px, calc(100% - 40px));
        margin: 24px auto;
    }
    .home-page .stats-strip {
        position: relative;
        width: 100%;
    }
    .home-page .stats-strip .container {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        padding-left: 0;
    }
    .home-content .tile-grid,
    .home-content .cards-grid,
    .home-evidence-preview .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .home-areas-grid { grid-template-columns: repeat(3, 1fr); }
    .home-areas-grid .area-card img { height: 150px; }
    .home-areas-grid .area-card p { min-height: auto; }
    .real-hotspot-map { grid-template-columns: 1fr; }
    #hotspot-map { height: 280px; }
    .news-hero-grid,
    .lead-news-card,
    .news-layout,
    .article-hero-grid,
    .article-shell,
    .protected-hero-grid,
    .protected-feature-card,
    .projects-hero-grid,
    .project-feature-card,
    .project-record-card,
    .history-hero-grid,
    .history-feature-card,
    .area-detail-hero-grid,
    .area-detail-layout { grid-template-columns: 1fr; }
    .article-layout,
    .article-media { grid-template-columns: 1fr; }
    .article-media,
    .article-layout > .article-body,
    .article-layout > .article-news-aside { grid-column: auto; grid-row: auto; }
    .article-media-frame { grid-column: auto; }
    .media-hub-hero-grid,
    .media-hub-layout { grid-template-columns: 1fr; }
    .media-platform-grid,
    .media-video-grid,
    .media-preview-grid,
    .media-social-grid { grid-template-columns: 1fr; }
    .media-social-frame { height: auto; max-height: 560px; }
    .platform-archive-layout { grid-template-columns: 1fr; }
    .archive-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .platform-filter-panel { grid-template-columns: 1fr 1fr; }
    .platform-filter-panel h2,
    .platform-filter-panel p { grid-column: 1 / -1; }
    .media-filter-count { justify-self: start; }
    .news-feed-layout { grid-template-columns: 1fr; }
    .news-feed-sidebar { position: static; }
    .news-feed-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-feed-image { height: 200px; min-height: 0; }
    .knowledge-grid,
    .article-split-panel,
    .evidence-link-panel { grid-template-columns: 1fr; }
    .article-submit-cta { align-items: flex-start; flex-direction: column; }
    .evidence-link-actions { justify-content: flex-start; }
    .article-left-rail {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .protected-card-grid { grid-template-columns: repeat(2, 1fr); }
    .history-card-grid { grid-template-columns: repeat(2, 1fr); }
    .evidence-access-panel,
    .evidence-collection-grid { grid-template-columns: repeat(2, 1fr); }
    .evidence-access-panel > p { grid-column: 1 / -1; }
    .evidence-source-grid,
    .compact-evidence-grid { grid-template-columns: repeat(2, 1fr); }
    .project-summary-grid { grid-template-columns: 1fr; }
    .history-intro-grid { grid-template-columns: 1fr; }
    .project-record-card dl { grid-template-columns: repeat(2, 1fr); }
    .protected-toolbar { display: block; }
    .protected-toolbar .filters { justify-content: flex-start; margin-top: 16px; }
    .news-sidebar,
    .article-aside,
    .area-detail-aside { position: static; }
    .news-list-grid .news-card { grid-template-columns: 1fr; }
    .news-list-grid .news-card img { height: 220px; min-height: 0; }
    .newsroom-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-section-bar { display: block; }
    .news-section-bar .filters { justify-content: flex-start; margin-top: 12px; }
    .hero-grid, .two-column, .detail-grid { grid-template-columns: 1fr; }
    .side-panel:not(.home-rail), .quick-facts { position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .media-verification-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .site-header { flex-wrap: wrap; min-height: 68px; padding: 12px 20px; }
    .home-page .site-header {
        position: sticky;
        background: rgba(1, 25, 40, .97);
        border-bottom: 1px solid rgba(255,255,255,.1);
        box-shadow: none;
        backdrop-filter: none;
    }
    .brand { font-size: 23px; }
    .menu-toggle { display: grid; place-items: center; }
    .main-nav {
        order: 5;
        display: none;
        width: 100%;
        margin: 0;
        padding: 8px 0 6px;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .main-nav.open { display: grid; grid-template-columns: repeat(2, 1fr); }
    .main-nav a { padding: 10px 0; border-bottom: 0; }
    .nav-submenu {
        position: static;
        display: grid;
        min-width: 0;
        padding: 4px 0 8px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
    .nav-submenu a {
        padding: 6px 0;
        color: rgba(255,255,255,.68);
        font-size: 11px;
    }
    .header-actions { margin-left: 0; }
    .container { width: min(100% - 28px, 1180px); }
    .hero { min-height: auto; }
    .home-page .hero {
        background-position: center top;
        overflow: hidden;
    }
    .home-page .hero::before {
        background: linear-gradient(180deg, rgba(0,18,30,.48), rgba(0,18,30,.22));
    }
    .home-page .hero-grid,
    .home-content,
    .home-lower-layout,
    .home-rail,
    .home-page .stats-strip .container {
        width: min(100% - 28px, 1180px);
    }
    .hero-grid { padding: 48px 0 0; }
    .home-page .hero-grid { padding: 34px 0 22px; }
    .hero h1 { font-size: clamp(44px, 12vw, 88px); overflow-wrap: normal; word-break: keep-all; }
    .home-page .hero h1 {
        max-width: none;
        font-size: clamp(44px, 12vw, 72px);
        line-height: .92;
        overflow-wrap: normal;
        word-break: keep-all;
    }
    .home-page .hero h2 { font-size: 18px; }
    .home-page .hero p { max-width: none; font-size: 15px; }
    .home-page .hero-card {
        max-width: none;
        background: rgba(1,25,40,.88);
        backdrop-filter: none;
    }
    .stats-strip { margin-top: 34px; }
    .stats-grid, .tile-grid, .cards-grid, .areas-grid, .icon-row, .media-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
    .media-hub-hero { padding: 42px 0 30px; }
    .media-hub-hero h1 { font-size: clamp(42px, 14vw, 62px); }
    .media-hub-hero p:not(.eyebrow) { font-size: 16px; }
    .media-verification-strip { grid-template-columns: 1fr; }
    .media-video-facts { grid-template-columns: 1fr; }
    .media-cue-list article { grid-template-columns: 1fr; }
    .home-content .tile-grid,
    .home-content .cards-grid,
    .home-evidence-preview .cards-grid { grid-template-columns: 1fr; }
    .home-areas-grid { grid-template-columns: 1fr; }
    .home-areas-grid .area-card img { height: 190px; }
    .news-list-grid { grid-template-columns: 1fr; }
    .newsroom-four { grid-template-columns: 1fr; }
    .related-news-grid { grid-template-columns: 1fr; }
    .lead-news-card img,
    .article-hero img { min-height: 0; height: 230px; }
    .protected-feature-card img { min-height: 0; height: 250px; }
    .protected-stats,
    .protected-card-grid { grid-template-columns: 1fr; }
    .protected-card-image { height: 220px; }
    .protected-card p { min-height: auto; }
    .protected-card dl { grid-template-columns: 1fr; }
    .project-feature-card img,
    .project-record-card img,
    .project-detail-hero img,
    .history-feature-card img,
    .history-detail-hero img,
    .area-detail-hero img { min-height: 0; height: 240px; }
    .project-record-card dl { grid-template-columns: 1fr; }
    .project-record-actions { align-items: stretch; }
    .project-record-actions .text-link,
    .project-record-actions .ghost-button { width: 100%; justify-content: center; }
    .history-card-grid { grid-template-columns: 1fr; }
    .evidence-stats-row,
    .evidence-access-panel,
    .evidence-collection-grid,
    .evidence-source-grid,
    .compact-evidence-grid { grid-template-columns: 1fr; }
    .evidence-access-panel > p { grid-column: auto; }
    .evidence-collection-card { min-height: 0; }
    .evidence-standard { grid-template-columns: 1fr; }
    .evidence-row-facts { grid-template-columns: 1fr; }
    .evidence-row-actions { align-items: stretch; }
    .evidence-row-actions .text-link,
    .evidence-row-actions .button,
    .evidence-row-actions .ghost-button { width: 100%; justify-content: center; }
    .history-card p { min-height: auto; }
    .history-card dl { grid-template-columns: 1fr; }
    .project-record-top { display: block; }
    .submission-safety-note { grid-template-columns: 1fr; }
    .lead-news-card > div { padding: 20px; }
    /* Article — masthead */
    .article-masthead { padding: 92px 0 26px; }
    .article-masthead h1 { font-size: clamp(26px, 7.5vw, 38px); line-height: 1.08; }
    .article-standfirst { font-size: 17px !important; margin-top: 12px; }
    .article-breadcrumbs { margin-bottom: 14px; font-size: 12px; }
    .article-badge { font-size: 10px; }

    /* Article — info row */
    .article-info-row { gap: 6px; flex-direction: column; align-items: flex-start; }
    .article-info-row > span:not(.status-label) { width: auto; padding-right: 0; border-right: 0; }

    /* Article — media / hero image */
    .article-media { padding-top: 0; }
    .article-media-frame img { height: clamp(200px, 55vw, 320px); }
    .article-media figcaption { font-size: 11px; padding: 28px 12px 10px; }

    /* Article — body */
    .article-body p { font-size: 16px; }
    .article-lede { font-size: 19px !important; }
    .article-lede::first-letter { float: none; font-size: inherit; margin: 0; color: inherit; }
    .article-story > p { max-width: none; }
    .article-story > h2 { font-size: 18px; margin: 28px 0 10px; padding-top: 16px; max-width: none; }
    .article-story > h2::before { height: 18px; }

    /* Article — knowledge box */
    .article-fact-box { margin: 20px 0; }
    .article-knowledge-body { padding: 16px; }
    .knowledge-grid { gap: 14px 16px; }
    .knowledge-grid div { grid-template-columns: 1fr; }
    .knowledge-grid .material-symbols-outlined { grid-row: auto; margin-bottom: 4px; font-size: 22px; }

    /* Article — evidence table */
    .article-evidence-table-wrap { border-radius: 6px 6px 0 0; }
    .article-evidence-table { font-size: 12px; }
    .article-evidence-table th, .article-evidence-table td { padding: 9px 10px; }

    /* Article — timeline */
    .article-timeline-list { margin-left: 4px; }
    .article-timeline-list li { grid-template-columns: 1fr; gap: 4px; padding-bottom: 14px; }
    .article-timeline-list li::before { left: -19px; top: 3px; }

    /* Article — split panel */
    .article-split-panel { padding: 16px; gap: 18px; }
    .article-split-panel h2 { font-size: 18px; }

    /* Article — sidebar */
    .article-aside { gap: 14px; padding-top: 14px; }
    .article-aside .white-card { padding: 18px; }
    .article-share-row { flex-wrap: wrap; gap: 6px; margin-top: 12px; padding-top: 12px; }

    /* Article — submit CTA */
    .article-submit-cta { padding: 18px; gap: 16px; }
    .article-submit-cta h2 { font-size: 20px; }

    /* Misc */
    .article-left-rail { grid-template-columns: 1fr; }
    .article-timeline-list li { grid-template-columns: 1fr; gap: 4px; }
    .news-feed-image { min-height: 210px; }
    .news-feed-card h2 { font-size: 23px; }
    .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .section-head { flex-wrap: wrap; gap: 10px; }
    .page-title, .footer-bottom { display: block; }
    .map-legend { position: relative; right: auto; bottom: auto; margin-top: 20px; width: max-content; max-width: 100%; }
    .home-content .map-legend { right: auto; bottom: auto; }
    .submit-inner { grid-template-columns: 1fr; padding: 34px 0; }
    .data-table { display: block; overflow-x: auto; white-space: nowrap; }
    .fact-list div { grid-template-columns: 1fr; gap: 6px; }
    .detail-hero-content { left: 20px; right: 20px; bottom: 24px; }
    .social-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .article-masthead h1 { font-size: clamp(22px, 7vw, 30px); }
    .article-standfirst { font-size: 16px !important; }
    .article-evidence-table th { display: none; }
    .article-evidence-table td { display: block; padding: 6px 10px; }
    .article-evidence-table td:first-child { font-weight: 700; padding-top: 12px; }
    .article-evidence-table td:last-child { padding-bottom: 12px; }
    .article-evidence-table tr { border-bottom: 1px solid var(--line); display: block; }
    .article-evidence-table tr:last-child { border-bottom: 0; }
    .knowledge-grid { grid-template-columns: 1fr; }
    .article-badge-row { gap: 6px; }
}
