        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dot-blue: #0044A5;
            --deep-blue: #002855;
            --cerulean: #2B70D3;
            --charcoal: #2d2d2d;
            --mid-grey: #6B7280;
            --light-grey: #E5E7EB;
            --off-white: #F9FAFB;
            --amber: #FA6400;
            --dove-wing: #F1F5F7;
        }

        /* Local font faces – expects /fonts/ folder alongside the site */
        @font-face {
            font-family: 'Atkinson Hyperlegible';
            src: url('/fonts/Atkinson-Hyperlegible-Regular-102a.woff2') format('woff2'),
                 url('/fonts/Atkinson-Hyperlegible-Regular-102.woff') format('woff');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Atkinson Hyperlegible';
            src: url('/fonts/Atkinson-Hyperlegible-Italic-102a.woff2') format('woff2'),
                 url('/fonts/Atkinson-Hyperlegible-Italic-102.woff') format('woff');
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'Atkinson Hyperlegible';
            src: url('/fonts/Atkinson-Hyperlegible-Bold-102a.woff2') format('woff2'),
                 url('/fonts/Atkinson-Hyperlegible-Bold-102.woff') format('woff');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Atkinson Hyperlegible';
            src: url('/fonts/Atkinson-Hyperlegible-BoldItalic-102a.woff2') format('woff2'),
                 url('/fonts/Atkinson-Hyperlegible-BoldItalic-102.woff') format('woff');
            font-weight: 700;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'Inter';
            src: url('/fonts/InterVariable.woff2') format('woff2-variations');
            font-weight: 100 900;
            font-style: normal;
            font-display: swap;
        }

        body {
            font-family: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            background: #F9FAFB;
        }

        /* ── Header ── */
        header {
            background: #F1F5F7;
            padding: 1rem 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2em 2rem 1em 2rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .logo img {
            height: 60px;
            width: auto;
            display: block;
        }

        @media (max-width: 640px) {
            .logo img {
                height: 28px;
            }
        }

       /* ── Desktop nav ── */
.nav-desktop ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    line-height: 1;
    padding-bottom: 0.1em;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
    line-height: 1;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--cerulean);
}

/* ── Hamburger button ── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

.nav-toggle img {
    width: 32px;
    height: 32px;
}

/* ── Mobile nav overlay ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dove-wing);
    z-index: 100;
    flex-direction: column;
}

.nav-overlay.open {
    display: flex;
}

.nav-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    background: var(--dove-wing);
}

.nav-overlay-header .logo img {
    height: 40px;
}

.nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

.nav-close img {
    width: 40px;
    height: 40px;
}

.nav-overlay ul {
    list-style: none;
    flex: 1;
    overflow-y: auto;
}

.nav-overlay ul li {
    border-top: 1px solid var(--light-grey);
}

.nav-overlay ul li:last-child {
    border-bottom: 1px solid var(--light-grey);
}

.nav-overlay ul a {
    display: block;
    padding: 1.25rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cerulean);
    text-decoration: none;
    transition: background 0.15s;
}

.nav-overlay ul a:hover,
.nav-overlay ul a.active {
    background: var(--light-grey);
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}



        /* ── Main content ── */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background: #F9FAFB;

        }

        /* ── Article / page content ── */
        .page-content {
            max-width: 740px;
            padding-top: 1.5em;
            margin-top: 1em;
        }
        
                .page-content.breadcrumb {
            border-top: 1px solid #D8D8D8;                
                }


        .page-content h1 {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            line-height: 1.25;
            color: var(--cerulean);
            margin-bottom: 0.75rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .page-content h2 {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            color: var(--cerulean);
            margin: 2.5rem 0 1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .page-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            color: var(--deep-blue);
            margin: 2rem 0 0.75rem;
            font-weight: 600;
        }

        .page-content p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--charcoal);
        }

        .page-content ul,
        .page-content ol {
            margin: 0 0 1.5rem 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .page-content li {
            margin-bottom: 0.4rem;
        }

        .page-content a {
            color: var(--cerulean);
            text-decoration: underline;
        }

        .page-content a:hover {
            color: var(--deep-blue);
        }

        .page-content strong {
            font-weight: 700;
        }

        .page-content blockquote {
            border-left: 3px solid var(--cerulean);
            margin: 1.5rem 0;
            padding: 0.5rem 1.5rem;
            color: var(--mid-grey);
            font-style: italic;
        }

        /* ── x ── */
        footer {
            background: var(--dove-wing);
            color: var(--charcoal);
            padding: 4rem 0;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

		.legals {
		            max-width: 1200px;
            margin: 0 4rem;
            padding: 0 2rem;
            font-size: 0.8rem;
}


        .footer-left {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .cc-logo {
            width: 40px;
            height: 40px;
        }

        .footer-links-main {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links-main a {
            color: var(--charcoal);
            text-decoration: none;
            font-size: 1rem;
            font-weight:600;
        }

        .footer-links-main a:hover {
            color: var(--cerulean);
        }

        .donate-btn {
            background: var(--amber);
            color: #fff;
            padding: 0.54rem 1.75rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: background 0.2s;
            margin-right: 4em;
        }

        .donate-btn:hover {
            background: #e05900;
        }

        /* ── Responsive ── */
        @media (max-width: 968px) {
            .container {
                padding: 1.5rem;
            }
        }

        @media (max-width: 640px) {            nav a {
                font-size: 16px;
            }

            nav ul {
                gap: 1.5rem;
            }

            .header-container {
                gap: 1rem;
            }

            .footer-container {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-left {
                flex-direction: column;
            }
        }

        /* ── Language switcher ── */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            align-self: flex-end;
            padding-bottom: 0.1em;
            white-space: nowrap;
        }

        .lang-sep {
            color: var(--mid-grey);
            font-size: 13px;
            line-height: 1;
            user-select: none;
        }

        .lang-switch {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--cerulean);
            text-decoration: none;
            transition: color 0.2s;
        }

        .lang-switch:hover {
            color: var(--deep-blue);
        }

        /* ── Mobile overlay lang switch ── */
        .nav-overlay-lang {
            padding: 1.5rem 2rem;
            border-top: 1px solid var(--light-grey);
        }

        .lang-switch--mobile {
            font-size: 1.1rem;
        }

        /* ── Accessibility ── */
        a:focus,
        button:focus {
            outline: 2px solid var(--cerulean);
            outline-offset: 2px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }


/* ─────────────────────────────────────────────────────────────────────────────
   Section overview layout additions
   Append this block to main.css (or @import if you move to a build step).
   Depends on existing CSS variables and base styles in main.css.
   ───────────────────────────────────────────────────────────────────────────── */


/* ── Breadcrumb ─────────────────────────────────────────────────────────────── */

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--mid-grey);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--mid-grey);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--cerulean);
    text-decoration: underline;
}

.breadcrumb__sep {
    margin: 0 0.4rem;
    color: var(--light-grey);
    user-select: none;
}

.breadcrumb [aria-current="page"] {
    color: var(--charcoal);
}


/* ── Two-column layout ───────────────────────────────────────────────────────── */

.layout-with-sidebar {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.main-column {
    flex: 1;
    min-width: 0;           /* prevents flex blowout on long content */
}

/* Override the max-width set on .page-content for this layout —
   the sidebar constrains the available space naturally */
.layout-with-sidebar .main-column.page-content {
    max-width: none;
}


/* ── Sidebar ─────────────────────────────────────────────────────────────────── */

.sidebar {
    width: 260px;
    flex-shrink: 0;
    padding-top: 1.5em;      /* aligns visually with the main column content start */
}

.sidebar-card {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-grey);
}

.sidebar-card:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-card__heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cerulean);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* News card headings are h3 — keep them the same visual weight as about card h2 */
.sidebar-card h3.sidebar-card__heading {
    font-size: 1rem;
}

.sidebar-card__heading-link {
    color: inherit;
    text-decoration: none;
}

.sidebar-card__heading-link:hover {
    text-decoration: underline;
}

.sidebar-card__body {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.55;
    margin-bottom: 0.6rem;
}

.sidebar-card__link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cerulean);
    text-decoration: underline;
    transition: color 0.2s;
}

.sidebar-card__link:hover {
    color: var(--deep-blue);
}

.sidebar-card__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--mid-grey);
    margin-top: 0.4rem;
    margin-bottom: 0;
}

.sidebar-card__type {
    font-weight: 600;
}

.sidebar__see-all {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cerulean);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar__see-all:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}


/* ── Level labels ────────────────────────────────────────────────────────────── */
/*
   Used inline in body copy to label accreditation levels.
   In markdown: <span class="level-label">Level 1</span> comprises…
   Or wrap in a link if the level links to its own anchor/page.
   All three levels use cerulean per the wireframe; add --2 / --3 variants
   here if the design calls for differentiation later.
*/

.level-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--cerulean);
}

a.level-label {
    text-decoration: none;
}

a.level-label:hover {
    text-decoration: underline;
    color: var(--deep-blue);
}


/* ── Responsive ──────────────────────────────────────────────────────────────── */

/* Tablet: narrow the sidebar */
@media (max-width: 968px) {
    .layout-with-sidebar {
        gap: 3rem;
    }
    .sidebar {
        width: 220px;
    }
}

/* Mobile: stack sidebar below main content */
@media (max-width: 768px) {
    .layout-with-sidebar {
        flex-direction: column;
        gap: 2.5rem;
    }
    .sidebar {
        width: 100%;
        padding-top: 0;
        border-top: 1px solid var(--light-grey);
        padding-top: 1.5rem;
    }
}


/* ── Info box ────────────────────────────────────────────────────────────────── */
/*
   Contextual callout panel. Used for the sidebar "about" card and can be
   used inline in page content too. Overrides dotpublic.css where variable
   names differ (--color-* → current token names).
*/

.info-box {
    background: #F1F5F7;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-box h2,
.info-box h3 {
    font-family: 'Inter', sans-serif;
    color: var(--cerulean);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.info-box p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    max-width: 100%;
}

.info-box a {
    color: var(--charcoal);
    text-decoration: underline;
    font-weight: 600;
}

.info-box a:hover {
    color: var(--cerulean);
}

/* ── Right-bleed: info-box in section overview sidebar ───────────────────────── */
/*
   The info-box sits flush against the container's right edge. The ::after
   pseudo-element extends its background colour to the viewport right edge.
   No ancestor has overflow:hidden so this works freely.
*/

.sidebar .info-box {
    position: relative;
}

.sidebar .info-box::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    background: var(--off-white);
    pointer-events: none;
}

@media (max-width: 768px) {
    .sidebar .info-box::after {
        display: none;
    }
}


/* ── Subnav panel (detail page sidebar) ──────────────────────────────────────── */
/*
   Only the subnav panel has the dove-wing background and right bleed.
   News cards below sit on the page background, same as section-overview.
*/

.subnav-panel {
    background: var(--dove-wing);
    padding: 1.5rem;
    position: relative;
    margin-bottom: 0;
}

.subnav-panel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    background: var(--dove-wing);
    pointer-events: none;
}

@media (max-width: 768px) {
    .subnav-panel::after {
        display: none;
    }
}

.subnav-panel__heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cerulean);
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
}

.subnav-panel__heading:hover {
    text-decoration: underline;
}

.subnav-panel__list {
    list-style: none;
}

.subnav-panel__list li {
    border-top: 1px solid var(--light-grey);
}

.subnav-panel__list li:last-child {
    border-bottom: 1px solid var(--light-grey);
}

.subnav-panel__list a {
    display: block;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.subnav-panel__list a:hover {
    color: var(--cerulean);
}

.subnav-panel__list a[aria-current="page"] {
    font-weight: 700;
    color: var(--cerulean);
}


/* ── Detail sidebar wrapper ───────────────────────────────────────────────────── */
/*
   Structural wrapper only — background and bleed live on .subnav-panel.
   News cards below have no background, matching section-overview pattern.
*/

.detail-sidebar .sidebar-news {
    padding-top: 1.5rem;
}

.detail-sidebar .sidebar-card:last-of-type {
    border-bottom: none;
}

@media (max-width: 768px) {
    .subnav-panel {
        border-radius: 4px;
    }
    .detail-sidebar {
        border-radius: 4px;
    }
}


/* ── Table styles ────────────────────────────────────────────────────────────── */
/*
   Data tables in markdown content, e.g. standards reference tables.
   Wrap in <div class="table-scroll"> in HTML for horizontal scroll on mobile.
*/

.page-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    margin: 2rem 0;
    line-height: 1.4;
}

.page-content thead th {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--deep-blue);
    padding: 0.6rem 0.75rem;
    text-align: left;
}

.page-content tbody tr {
    border-bottom: 1px solid var(--light-grey);
}

.page-content tbody tr:hover {
    background: var(--dove-wing);
}

.page-content tbody td {
    padding: 0.55rem 0.75rem;
    color: var(--charcoal);
    vertical-align: top;
}

.page-content tbody td a {
    color: var(--cerulean);
    word-break: break-all;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

.table-scroll table {
    margin: 0;
    min-width: 600px;
}


/* ── Related items (detail page footer) ──────────────────────────────────────── */

.related-items {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-grey);
    font-size: 0.9rem;
    color: var(--charcoal);
}

.related-items__label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-right: 0.25rem;
}

.related-items__sep {
    margin: 0 0.4rem;
    color: var(--mid-grey);
    user-select: none;
}

.related-items a {
    color: var(--cerulean);
    text-decoration: underline;
}

.related-items a:hover {
    color: var(--deep-blue);
}


/* ── News article: hero images ────────────────────────────────────────────────── */

/*
   Full-bleed hero: outside the container, edge to edge of the viewport.
   Sits between <header> and <div class="container"> in the layout.
*/
.hero-bleed {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    background: var(--dove-wing);
}

.hero-bleed img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/*
   Contained hero: inside the main column, full column width.
*/
.hero-contained {
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
    background: var(--dove-wing);
}

.hero-contained img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ── News tag path ────────────────────────────────────────────────────────────── */
/*
   Replaces breadcrumb on news articles. "News / Type / Tag"
   Each segment links to a filtered listing.
*/

.news-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-grey);
}

.news-tags a {
    color: var(--mid-grey);
    text-decoration: none;
    transition: color 0.2s;
}

.news-tags a:hover {
    color: var(--cerulean);
    text-decoration: underline;
}

.news-tags__sep {
    margin: 0 0.4rem;
    color: var(--light-grey);
    user-select: none;
}


/* ── Standfirst ───────────────────────────────────────────────────────────────── */
/* Bold lead paragraph on standard news articles */

.standfirst {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
}


/* ── Author block (Voices articles) ──────────────────────────────────────────── */

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.25rem 0 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.author-block__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-block__details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: center;
}

.author-block__name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
}

.author-block__bio {
    font-size: 0.9rem;
    color: var(--mid-grey);
    line-height: 1.45;
}


/* ── Boilerplate (press release fields) ──────────────────────────────────────── */

.boilerplate {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-grey);
}

.boilerplate p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.boilerplate a {
    color: var(--cerulean);
    text-decoration: underline;
}

.boilerplate a:hover {
    color: var(--deep-blue);
}

.boilerplate__rule {
    border: none;
    border-top: 1px solid var(--light-grey);
    margin: 1.25rem 0 1rem;
}


/* ── News index ───────────────────────────────────────────────────────────────── */

.news-index {
    max-width: 740px;
}

.news-index__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-grey);
}

.news-index__header h1 {
    margin-bottom: 0;
}


/* ── RSS link ─────────────────────────────────────────────────────────────────── */

.rss-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.rss-link:hover {
    color: #c44f00;
}

.rss-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ── News type filter ─────────────────────────────────────────────────────────── */

.news-filter {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.news-filter__item {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mid-grey);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1px solid var(--light-grey);
    border-right: none;
    transition: color 0.2s, background 0.2s;
}

.news-filter__item:first-child {
    border-radius: 4px 0 0 4px;
}

.news-filter__item:last-child {
    border-right: 1px solid var(--light-grey);
    border-radius: 0 4px 4px 0;
}

.news-filter__item:hover {
    color: var(--cerulean);
    background: var(--dove-wing);
}

.news-filter__item--active {
    color: #fff;
    background: var(--cerulean);
    border-color: var(--cerulean);
}

.news-filter__item--active:hover {
    color: #fff;
    background: var(--deep-blue);
    border-color: var(--deep-blue);
}


/* ── News list items ──────────────────────────────────────────────────────────── */

.news-list-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--light-grey);
}

.news-list-item:first-of-type {
    border-top: 1px solid var(--light-grey);
    margin-top: 1.5rem;
}

.news-list-item__meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--mid-grey);
    margin-bottom: 0.4rem;
}

.news-list-item__type {
    font-weight: 600;
}

.news-list-item__title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--cerulean);
    letter-spacing: -0.01em;
}

.news-list-item__title a {
    color: inherit;
    text-decoration: none;
}

.news-list-item__title a:hover {
    text-decoration: underline;
    color: var(--deep-blue);
}

.news-list-item__excerpt {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.55;
    margin-bottom: 0;
}

.news-empty {
    color: var(--mid-grey);
    font-style: italic;
    padding: 2rem 0;
}


/* ── Sidebar: secondary 'see all news' link ───────────────────────────────────── */
/* Sits below the type-specific link; slightly quieter visually */

.sidebar__see-all--all {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid-grey);
}

.sidebar__see-all--all:hover {
    color: var(--cerulean);
    text-decoration: underline;
}
