:root {
    color-scheme: light;
    --ink: #151512;
    --muted: #646861;
    --paper: #f7f4ea;
    --panel: #ffffff;
    --line: #d7d1c2;
    --line-strong: #151512;
    --accent: #fe460b;
    --accent-dark: #b83312;
    --blueprint: #225f86;
    --signal: #2f745f;
    --radius: 8px;
    --shadow: 0 12px 30px rgba(21, 21, 18, 0.08);
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        linear-gradient(rgba(21, 21, 18, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 18, 0.035) 1px, transparent 1px),
        var(--paper);
    background-size: 32px 32px;
    color: var(--ink);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    background: var(--ink);
    color: #fff;
    padding: 0.6rem 0.8rem;
    z-index: 10;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    border-bottom: 3px solid var(--line-strong);
    background: rgba(247, 244, 234, 0.94);
    position: sticky;
    top: 0;
    z-index: 3;
    backdrop-filter: blur(14px);
}

.site-nav,
.site-main,
.site-footer {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-nav {
    min-height: 64px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.nav-links,
.site-footer nav {
    display: flex;
    gap: 0.85rem 1.25rem;
}

.nav-links {
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-links a,
.site-footer a {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
    color: var(--accent-dark);
}

.brand {
    flex: 0 0 auto;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0;
}

.brand span {
    display: block;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
}

.brand strong {
    display: block;
    color: var(--accent);
    font-size: 1.55rem;
}

.site-main {
    padding: 28px 0 56px;
}

.home-main {
    padding-top: 18px;
}

.home-masthead {
    border-bottom: 3px solid var(--line-strong);
    padding: 22px 0 16px;
}

.masthead-kicker {
    margin: 0 0 18px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.home-masthead h1 {
    max-width: none;
}

.masthead-logo {
    width: min(860px, 100%);
    margin: 0 auto;
}

.issue-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 20px;
    border: 1px solid var(--line-strong);
    background: var(--line-strong);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.issue-bar span {
    background: var(--paper);
    padding: 0.65rem 0.8rem;
    text-align: center;
}

.lead-section {
    min-height: 280px;
    display: grid;
    align-items: end;
    padding: 44px 0;
    border-bottom: 3px solid var(--ink);
}

.eyebrow,
.article-meta {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0;
}

h1 {
    max-width: 780px;
    font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.lead {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.22rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin: 28px 0 18px;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 0.7rem;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
}

.article-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.featured-section {
    margin-top: 28px;
}

.featured-story {
    margin-bottom: 28px;
    background: var(--panel);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
}

.featured-link {
    display: grid;
    grid-template-columns: minmax(320px, 54%) 1fr;
    color: inherit;
    text-decoration: none;
}

.featured-link:hover h2,
.summary-link:hover h3 {
    color: var(--accent-dark);
}

.featured-link img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    background: #e5ece8;
}

.featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.35rem, 3vw, 2.4rem);
}

.featured-label {
    align-self: flex-start;
    margin-bottom: 0.9rem;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    padding: 0.36rem 0.5rem;
    text-transform: uppercase;
}

.featured-copy h2 {
    font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.featured-copy p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 0;
}

.summary-card {
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid var(--line);
}

.summary-link {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.25rem;
    color: inherit;
    text-decoration: none;
    padding: 18px;
}

.summary-link img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--line);
    background: #e5ece8;
}

.summary-copy {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-copy p:last-child {
    color: var(--muted);
    margin-bottom: 0;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.75rem;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--accent);
    color: var(--accent-dark);
    padding: 0.12rem 0.42rem;
}

.byline {
    color: var(--ink);
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 32px;
    color: var(--muted);
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
}

.narrow {
    max-width: 760px;
}

.page-content {
    min-height: 52vh;
}

.page-content h1 {
    font-size: clamp(2.5rem, 7vw, 4.6rem);
    margin-bottom: 1rem;
}

.article-page {
    max-width: 1040px;
}

.article-shell {
    background: var(--panel);
    border: 1px solid var(--line);
    overflow: clip;
}

.article-header {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.article-header h1 {
    max-width: none;
    font-size: clamp(2.3rem, 6vw, 5rem);
}

.dek {
    max-width: 860px;
    color: var(--muted);
    font-size: 1.2rem;
}

.article-hero-figure {
    max-width: 860px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.article-hero-figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 0;
}

.article-hero-figure figcaption {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
}

.article-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
    font-size: 1.08rem;
}

.article-content h2,
.article-content h3 {
    margin-top: 2rem;
}

.article-content a {
    color: var(--blueprint);
    font-weight: 800;
}

.article-figure {
    margin: 2rem 0;
    text-align: center;
}

.article-figure img {
    width: auto;
    border: 1px solid var(--line);
    background: #e5ece8;
    margin: 0 auto;
}

.article-figure figcaption {
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.article-video {
    margin: 2rem 0;
    text-align: center;
}

.video-frame {
    aspect-ratio: 16 / 9;
    background: #000;
    width: 100%;
}

.video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-video figcaption {
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
}

.empty-state {
    background: #fff;
    border: 1px dashed var(--muted);
    padding: 2rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0 40px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(1.5rem, 5vw, 3rem);
}

.footer-brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    max-width: 260px;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    width: 148px;
    height: auto;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.25rem, 4vw, 2.25rem);
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.32rem;
    min-width: 98px;
}

.footer-link-group h2 {
    margin: 0 0 0.15rem;
    color: var(--ink);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.footer-link-group a {
    padding: 0;
    white-space: normal;
}

.site-footer p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.3;
}

@media (max-width: 760px) {
    .site-nav {
        gap: 0.7rem;
        min-height: 58px;
    }

    .nav-links {
        gap: 0.65rem;
        justify-content: flex-end;
    }

    .nav-links a {
        font-size: 0.72rem;
    }

    .home-masthead {
        padding-top: 12px;
    }

    .masthead-kicker {
        text-align: center;
    }

    .issue-bar {
        grid-template-columns: 1fr;
    }

    .lead-section {
        min-height: 220px;
        padding: 30px 0;
    }

    .section-heading,
    .pager {
        align-items: flex-start;
        flex-direction: column;
    }

    .summary-link {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .summary-link img {
        aspect-ratio: 16 / 9;
    }

    .featured-link {
        grid-template-columns: 1fr;
    }

    .featured-link img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .featured-copy {
        padding: 1.2rem;
    }

    .featured-label {
        margin-bottom: 0.75rem;
        font-size: 0.68rem;
    }

    .featured-copy h2 {
        font-size: clamp(1.25rem, 2vw, 1.7rem);
    }

    .featured-copy p:last-child {
        font-size: 1rem;
    }

    .site-footer {
        justify-content: center;
        gap: 1rem;
        padding-bottom: 32px;
    }

    .footer-brand {
        max-width: 130px;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-link-group {
        min-width: 74px;
        gap: 0.22rem;
    }

    .footer-link-group h2 {
        font-size: 0.66rem;
    }

    .footer-link-group a {
        font-size: 0.68rem;
    }

    .footer-logo img {
        width: 108px;
    }

    .site-footer p {
        font-size: 0.72rem;
        line-height: 1.25;
    }
}

@media (max-width: 340px) {
    .site-nav {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 0.8rem 0;
    }

    .brand {
        margin-right: auto;
    }

    .nav-links {
        justify-content: flex-start;
        width: 100%;
    }
}

