:root {
    --ink: #13231f;
    --ink-2: #1d332c;
    --paper: #f7f1e5;
    --paper-2: #eee4d3;
    --white: #fffdf8;
    --red: #cf2936;
    --red-dark: #a91825;
    --yellow: #f3b61f;
    --green: #24824b;
    --flag-red: #f20d08;
    --flag-yellow: #f5e500;
    --flag-green: #286b2b;
    --muted: #67716d;
    --line: rgba(19, 35, 31, 0.16);
    --line-strong: rgba(19, 35, 31, 0.28);
    --shadow: 0 26px 70px rgba(19, 35, 31, 0.12);
    --radius: 18px;
    --shell: min(1200px, calc(100vw - 48px));
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
}

/* Public archive, article and utility pages */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.archive-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.archive-hero::after {
    position: absolute;
    right: -0.04em;
    bottom: -0.38em;
    content: "K";
    color: rgba(19, 35, 31, 0.045);
    font-family: var(--serif);
    font-size: min(44vw, 32rem);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.archive-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-block: clamp(72px, 10vw, 142px);
    margin-left: max(24px, calc((100vw - min(1200px, calc(100vw - 48px))) / 2));
}

.archive-hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 8vw, 7rem);
    overflow-wrap: anywhere;
}

.archive-hero__inner > p:last-of-type {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.24rem);
    overflow-wrap: anywhere;
}

.archive-results__top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.archive-results__top p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.archive-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 680px;
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    padding: 6px;
    box-shadow: 0 12px 38px rgba(19, 35, 31, 0.08);
}

.archive-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 9px 17px;
}

.archive-search button {
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    padding: 9px 20px;
    font-weight: 800;
}

.empty-state {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
    align-items: center;
    gap: clamp(34px, 7vw, 90px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: clamp(24px, 5vw, 64px);
}

.empty-state h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.article-hero {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.article-hero__inner {
    max-width: 1040px;
    padding-block: clamp(70px, 10vw, 138px);
}

.article-hero h1 {
    max-width: 1030px;
    margin: 24px 0 28px;
    font-size: clamp(2.7rem, 7vw, 6.5rem);
    text-wrap: balance;
}

.article-deck {
    max-width: 820px;
    color: var(--muted);
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: 1.48;
}

.article-meta {
    margin-top: 34px;
}

.article-image {
    position: relative;
    z-index: 2;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-top: clamp(-55px, -5vw, -38px);
    border-radius: var(--radius);
    background: var(--paper-2);
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 760px);
    justify-content: center;
    gap: clamp(34px, 7vw, 100px);
    padding-block: clamp(70px, 10vw, 130px);
}

.article-aside {
    border-top: 3px solid var(--red);
    padding-top: 15px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-aside span {
    color: var(--red);
    font-size: 1.1rem;
    font-weight: 900;
}

.article-body {
    font-family: var(--serif);
    font-size: clamp(1.12rem, 1.7vw, 1.32rem);
    line-height: 1.78;
}

.article-body p {
    margin-bottom: 1.55em;
}

.article-inline-image {
    margin: 2.6em 0;
}

.article-inline-image img,
.article-gallery__item img {
    width: 100%;
    border-radius: 14px;
    background: var(--paper);
}

.article-inline-image img {
    height: auto;
    max-height: none;
    object-fit: contain;
}

.article-inline-image figcaption,
.article-gallery__item figcaption {
    margin-top: 9px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.76rem;
    line-height: 1.45;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 3em 0;
}

.article-gallery__item {
    min-width: 0;
    margin: 0;
}

.article-gallery__item img {
    aspect-ratio: 4 / 3;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-body p:first-child::first-letter {
    float: left;
    margin: 0.08em 0.12em 0 0;
    color: var(--red);
    font-size: 4.1em;
    font-weight: 750;
    line-height: 0.72;
}

.article-end {
    display: flex;
    width: 86px;
    height: 4px;
    margin: 52px 0 30px;
}

.article-end span { flex: 1; }
.article-end span:nth-child(1) { background: var(--red); }
.article-end span:nth-child(2) { background: var(--yellow); }
.article-end span:nth-child(3) { background: var(--green); }

.legal-copy {
    max-width: 820px;
}

.legal-copy section {
    border-top: 1px solid var(--line);
    padding: 32px 0;
}

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

.legal-copy p {
    color: var(--muted);
}

.not-found {
    display: grid;
    min-height: 66vh;
    align-items: center;
    overflow: hidden;
    background: var(--paper);
}

.not-found__inner {
    position: relative;
    max-width: 780px;
    padding-block: 90px;
}

.not-found__code {
    position: absolute;
    z-index: 0;
    top: -0.18em;
    left: -0.06em;
    margin: 0;
    color: rgba(19, 35, 31, 0.055);
    font-family: var(--serif);
    font-size: clamp(13rem, 34vw, 30rem);
    font-weight: 800;
    line-height: 1;
}

.not-found__inner > :not(.not-found__code) { position: relative; z-index: 1; }
.not-found h1 { max-width: 680px; font-size: clamp(3rem, 7vw, 6rem); }
.not-found .actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 36px; }

@media (max-width: 760px) {
    .archive-hero__inner { margin-inline: auto; }
    .empty-state { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-aside { display: none; }
    .article-image { width: calc(100% - 28px); }
    .archive-search { grid-template-columns: 1fr; border-radius: var(--radius); }
    .archive-search button { border-radius: 10px; }
    .article-gallery { grid-template-columns: 1fr; }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 650;
    letter-spacing: -0.042em;
    line-height: 1.02;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-space {
    padding-block: clamp(72px, 9vw, 124px);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--red);
    font-size: 0.71rem;
    font-weight: 850;
    letter-spacing: 0.17em;
    line-height: 1.2;
    text-transform: uppercase;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
}

.arrow-link span {
    font-size: 1rem;
    transition: transform 180ms ease;
}

.arrow-link:hover span {
    transform: translate(3px, -3px);
}

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    background: var(--white);
}

.identity-line {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.7rem;
    font-weight: 720;
    letter-spacing: 0.04em;
}

.identity-line__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    gap: 20px;
}

.identity-line p {
    margin: 0;
}

.identity-line__inner > p:first-child {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 9px;
    overflow-wrap: anywhere;
}

.identity-line__inner > p:first-child span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(243, 182, 31, 0.16);
}

.identity-line__place {
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
}

.identity-line__tools,
.language-switcher {
    display: flex;
    align-items: center;
}

.identity-line__tools {
    flex: 0 0 auto;
    gap: 14px;
}

.language-switcher {
    gap: 2px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.language-switcher a {
    display: grid;
    place-items: center;
    min-width: 27px;
    height: 21px;
    padding: 0 5px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.language-switcher a[aria-current="true"] {
    color: var(--ink);
    background: var(--yellow);
}

.masthead {
    border-bottom: 1px solid var(--line);
}

.masthead__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 86px;
    gap: clamp(24px, 4vw, 56px);
}

.brand {
    display: block;
    width: 270px;
    max-width: 100%;
    aspect-ratio: 8 / 3;
    background: transparent;
}

.brand img.brand__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.2vw, 32px);
}

.primary-nav a {
    position: relative;
    display: grid;
    min-width: 0;
    max-width: 170px;
    padding-block: 16px;
    font-size: 0.78rem;
    font-weight: 820;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.primary-nav a span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 680;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 9px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.masthead__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.round-button,
.menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
}

.round-button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.round-button:hover {
    border-color: var(--red);
    color: var(--red);
}

.editor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 17px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 830;
    transition: background 160ms ease, transform 160ms ease;
}

.editor-button:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    align-content: center;
    gap: 4px;
}

.menu-button span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(5.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
}

.editorial-nav {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.editorial-nav__inner {
    display: flex;
    align-items: stretch;
    min-height: 43px;
    overflow: hidden;
}

.editorial-nav__inner > p {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin: 0;
    padding-right: 28px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.editorial-nav__inner > p span {
    width: 18px;
    height: 2px;
    background: var(--red);
}

.editorial-nav__inner > div {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.editorial-nav__inner > div::-webkit-scrollbar {
    display: none;
}

.editorial-nav a {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 10px 18px;
    border-left: 1px solid var(--line);
    font-size: 0.7rem;
    font-weight: 780;
    transition: background 160ms ease, color 160ms ease;
}

.editorial-nav a:hover,
.editorial-nav a[aria-current="page"] {
    background: var(--ink);
    color: #fff;
}

.ticker {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.ticker__inner {
    display: flex;
    align-items: stretch;
    min-height: 42px;
    overflow: hidden;
}

.ticker strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-right: 23px;
    color: var(--red-dark);
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ticker strong span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.ticker__items {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.ticker__items::-webkit-scrollbar {
    display: none;
}

.ticker__items a {
    position: relative;
    flex: 0 0 auto;
    max-width: 430px;
    overflow: hidden;
    padding: 10px 28px;
    font-family: var(--serif);
    font-size: 0.84rem;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticker__items a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--red);
    content: "";
}

.ticker__items a:hover {
    color: var(--red-dark);
}

.search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    padding-block: 32px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.search-panel[hidden] {
    display: none;
}

.search-panel__inner {
    position: relative;
}

.search-panel form {
    width: min(760px, calc(100% - 60px));
    margin-inline: auto;
}

.search-panel label {
    display: block;
    margin-bottom: 9px;
    font-size: 0.75rem;
    font-weight: 800;
}

.search-panel form > div {
    display: flex;
}

.search-panel input {
    width: 100%;
    min-height: 54px;
    padding: 10px 16px;
    border: 1px solid var(--ink);
    border-radius: 8px 0 0 8px;
    background: #fff;
}

.search-panel form button {
    min-width: 110px;
    border: 1px solid var(--ink);
    border-left: 0;
    border-radius: 0 8px 8px 0;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
}

.search-close {
    position: absolute;
    top: 19px;
    right: 0;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
}

/* Intro */
.home-intro {
    position: relative;
    overflow: hidden;
    padding-block: clamp(28px, 3vw, 42px) clamp(28px, 2.75vw, 40px);
    background: var(--paper);
}

.home-intro::before {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(120px, 18vw, 260px);
    height: 8px;
    background: linear-gradient(90deg, var(--red) 0 33.33%, var(--yellow) 33.33% 66.66%, var(--green) 66.66%);
    content: "";
}

.home-intro__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(330px, 0.8fr);
    align-items: end;
    gap: clamp(28px, 3.5vw, 52px);
}

.home-intro__edition {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: none;
    margin-bottom: 20px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line-strong);
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-intro__edition span {
    color: var(--ink);
}

.home-intro h1 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(2rem, 2.65vw, 2.65rem);
    line-height: 0.98;
    overflow-wrap: normal;
    white-space: nowrap;
}

.home-intro h1 em {
    color: var(--red);
    font-weight: inherit;
}

.home-intro__copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: end;
    gap: clamp(18px, 2vw, 28px);
    padding-bottom: 2px;
}

.home-intro__copy p {
    margin-bottom: 0;
    color: var(--ink-2);
    font-size: clamp(0.84rem, 1vw, 0.94rem);
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.home-intro__copy .arrow-link {
    white-space: nowrap;
}

.home-intro__word {
    position: absolute;
    right: -0.04em;
    bottom: -0.25em;
    left: -0.04em;
    overflow: hidden;
    color: rgba(19, 35, 31, 0.045);
    font-size: clamp(7rem, 20vw, 19rem);
    font-style: italic;
    font-weight: 950;
    letter-spacing: -0.095em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

/* Lead story */
.lead-section {
    padding-block: clamp(28px, 3vw, 44px) clamp(64px, 8vw, 110px);
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--ink);
    font-size: 0.68rem;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-label p {
    margin: 0;
}

.section-label p:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label p:first-child span {
    width: 26px;
    height: 3px;
    background: var(--red);
}

.section-label b {
    color: var(--muted);
    font-weight: 650;
}

.lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.05fr) minmax(310px, 0.95fr);
    align-items: stretch;
    gap: 24px;
}

.lead-layout--empty {
    grid-template-columns: 1fr;
}

.lead-carousel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--ink);
    box-shadow: var(--shadow);
    outline: none;
}

.lead-carousel:focus-visible {
    box-shadow: 0 0 0 4px rgba(207, 41, 54, 0.22), var(--shadow);
}

.lead-carousel__viewport {
    position: relative;
    display: grid;
    min-width: 0;
    flex: 1;
    overflow: hidden;
    background: var(--ink);
    touch-action: pan-y;
}

.lead-story {
    position: relative;
    display: grid;
    min-width: 0;
    grid-area: 1 / 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateX(34px);
    visibility: hidden;
    transition:
        opacity 380ms ease,
        transform 480ms cubic-bezier(.2, .65, .2, 1),
        visibility 0s linear 480ms;
}

.lead-story.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition: none;
}

.lead-story__media {
    position: relative;
    display: block;
    min-width: 0;
    grid-area: 1 / 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink);
}

.lead-story__media::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(5, 17, 14, 0.86) 0%, rgba(5, 17, 14, 0.42) 43%, transparent 78%),
        linear-gradient(90deg, rgba(5, 17, 14, 0.28) 0%, transparent 70%);
    content: "";
}

.lead-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 700ms cubic-bezier(.2, .65, .2, 1);
}

.lead-story.is-active:hover .lead-story__media img {
    transform: scale(1.025);
}

.lead-story__content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(72%, 640px);
    min-width: 0;
    grid-area: 1 / 1;
    align-self: end;
    align-items: flex-start;
    flex-direction: column;
    padding: clamp(26px, 3.4vw, 46px);
    color: #fff;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    color: var(--red-dark);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.category-label::before {
    width: 15px;
    height: 2px;
    background: currentColor;
    content: "";
}

.category-label:hover {
    color: var(--red);
}

.story-taxonomy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
}

.story-taxonomy .category-label {
    margin-bottom: 0;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 4px 8px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.72);
    color: var(--muted);
    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.language-badge::before {
    width: 4px;
    height: 4px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.story-card .story-taxonomy {
    margin-bottom: 12px;
}

.story-card .story-taxonomy .category-label {
    margin-bottom: 0;
}

.lead-story h2 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 3.15rem);
    line-height: 1.04;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
    text-wrap: balance;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.lead-story h2 a:hover {
    color: var(--yellow);
}

.story-card h3 a:hover {
    color: var(--red-dark);
}

.lead-carousel__controls {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 62px;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 13px;
    padding: 9px 12px;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.lead-carousel__arrow,
.lead-carousel__pause,
.lead-carousel__pagination button {
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
}

.lead-carousel__arrow {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.lead-carousel__arrow:hover,
.lead-carousel__arrow:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.lead-carousel__arrow svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.lead-carousel__pagination {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.lead-carousel__pagination button {
    min-width: 36px;
    min-height: 36px;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    transition: border-color 180ms ease, color 180ms ease;
}

.lead-carousel__pagination button:hover,
.lead-carousel__pagination button:focus-visible,
.lead-carousel__pagination button[aria-current="true"] {
    border-color: var(--red);
    color: var(--ink);
}

.lead-carousel__position {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    color: var(--muted);
    font-size: 0.62rem;
}

.lead-carousel__position strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.12rem;
}

.lead-carousel__pause {
    min-height: 36px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.lead-carousel__pause:hover,
.lead-carousel__pause:focus-visible,
.lead-carousel__pause[aria-pressed="true"] {
    background: var(--paper);
    color: var(--ink);
}

.popular-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--white);
}

.popular-panel__header {
    display: flex;
    min-height: 81px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 18px 14px;
    border-bottom: 3px solid var(--ink);
}

.popular-panel__header .eyebrow {
    margin-bottom: 2px;
    color: var(--red-dark);
}

.popular-panel__header h2 {
    margin: 0;
    font-size: clamp(1.75rem, 2.5vw, 2.65rem);
    line-height: 0.95;
}

.popular-panel__header > span {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.popular-list {
    display: grid;
    min-height: 0;
    flex: 1;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.popular-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 15px 10px 10px;
    border-bottom: 1px solid var(--line);
}

.popular-list li:last-child {
    border-bottom: 0;
}

.popular-list__number {
    color: rgba(19, 35, 31, 0.24);
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.popular-list__category {
    display: block;
    margin-bottom: 3px;
    color: var(--red-dark);
    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.popular-list h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-family: var(--sans);
    font-size: clamp(0.88rem, 1.18vw, 1.04rem);
    font-weight: 780;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.popular-list h3 a:hover {
    color: var(--red-dark);
}

.popular-panel__empty {
    margin: auto;
    padding: 28px;
    color: var(--muted);
    font-size: 0.9rem;
}

.story-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 680;
}

.story-meta > * + * {
    position: relative;
}

.story-meta > * + *::before {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--red);
    content: "";
}

.story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 49px;
    margin-top: 30px;
    padding: 11px 18px 11px 22px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 820;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.story-button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.story-button:hover {
    border-color: var(--red);
    background: var(--red);
    transform: translateY(-2px);
}

.empty-news {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    align-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
}

.empty-news img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.empty-news > div {
    padding: clamp(36px, 6vw, 76px);
}

.empty-news h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.topic-bar {
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.topic-bar__inner {
    display: flex;
    align-items: stretch;
    min-height: 68px;
}

.topic-bar__inner > p {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
    padding-right: 34px;
    color: var(--red-dark);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topic-bar__inner > div {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}

.topic-bar__inner > div::-webkit-scrollbar {
    display: none;
}

.topic-bar a {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    max-width: min(260px, 80vw);
    overflow: hidden;
    padding: 17px 28px;
    border-left: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 0.96rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topic-bar a:hover {
    background: var(--ink);
    color: #fff;
}

.topic-bar small {
    color: var(--red);
    font-family: var(--sans);
    font-size: 0.58rem;
}

/* Latest */
.latest-section {
    background: var(--white);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    overflow-wrap: anywhere;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 24px;
}

.story-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.story-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--paper-2);
}

.story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 420ms cubic-bezier(.2, .65, .2, 1);
}

.story-card:hover .story-card__image img {
    transform: scale(1.035);
}

.story-card__body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding-top: 20px;
}

.story-card .category-label {
    margin-bottom: 12px;
}

.story-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 13px;
    font-size: clamp(1.45rem, 2.2vw, 2.05rem);
    line-height: 1.1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.story-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 0.88rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.story-card__body > .story-meta {
    margin-top: auto;
}

.story-card--wide {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    border-bottom: 1px solid var(--line);
}

.story-card--wide .story-card__image {
    height: auto;
    min-height: 0;
    align-self: center;
    aspect-ratio: 16 / 9;
}

.story-card--wide .story-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px clamp(28px, 4vw, 50px);
    background: var(--paper);
}

.story-card--wide h3 {
    font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.empty-line {
    margin: 0;
    padding: 36px;
    border: 1px dashed var(--line);
    color: var(--muted);
    text-align: center;
}

/* Authors and public bylines */
.story-author-link {
    color: var(--ink);
    font-weight: 820;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.story-author-link:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.authors-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 5px solid var(--red);
    background: #0d1815;
    color: var(--white);
}

.authors-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(circle at 76% 18%, rgba(243, 182, 31, 0.12), transparent 27%),
        linear-gradient(115deg, transparent 58%, rgba(255, 255, 255, 0.025) 58%);
    content: "";
}

.authors-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: clamp(50px, 9vw, 130px);
    min-height: clamp(450px, 56vw, 650px);
    padding-block: clamp(78px, 10vw, 132px);
}

.authors-hero .eyebrow {
    color: var(--yellow);
}

.authors-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(3.8rem, 8.5vw, 8rem);
    overflow-wrap: anywhere;
}

.authors-hero h1 em {
    color: var(--yellow);
    font-style: normal;
}

.authors-hero__intro {
    max-width: 460px;
    padding: 25px 0 3px 28px;
    border-left: 3px solid var(--red);
}

.authors-hero__intro p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.38rem);
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.authors-hero__intro > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.authors-hero__intro > span::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.authors-hero__word {
    position: absolute;
    z-index: 0;
    right: -0.035em;
    bottom: -0.29em;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--serif);
    font-size: min(31vw, 26rem);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.authors-index {
    background: var(--white);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3.2vw, 40px) 24px;
}

.authors-grid--featured {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 235px), 1fr));
}

.author-card {
    min-width: 0;
}

.author-card__link {
    display: flex;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 4px solid var(--red);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(19, 35, 31, 0.06);
    transition:
        border-color 180ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.author-card:nth-child(3n + 2) .author-card__link {
    border-top-color: var(--yellow);
}

.author-card:nth-child(3n) .author-card__link {
    border-top-color: var(--green);
}

.author-card__link:hover {
    border-color: var(--line-strong);
    box-shadow: 0 25px 58px rgba(19, 35, 31, 0.13);
    transform: translateY(-5px);
}

.author-card__link:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.author-card__portrait {
    display: grid;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--paper-2);
}

.author-card__portrait > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88);
    transition: filter 220ms ease, transform 420ms cubic-bezier(.2, .65, .2, 1);
}

.author-card__link:hover .author-card__portrait > img {
    filter: saturate(1);
    transform: scale(1.035);
}

.author-placeholder {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 45%),
        var(--ink);
    color: var(--paper);
}

.author-placeholder::before {
    position: absolute;
    top: -0.32em;
    right: -0.04em;
    color: rgba(255, 255, 255, 0.05);
    content: "K";
    font-family: var(--serif);
    font-size: clamp(10rem, 24vw, 18rem);
    font-weight: 800;
    line-height: 1;
}

.author-placeholder b {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-size: clamp(4.7rem, 11vw, 8rem);
    font-weight: 600;
    line-height: 1;
}

.author-placeholder small {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 15px;
    color: var(--yellow);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.author-card__body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 25px 25px 21px;
}

.author-card__kicker {
    margin-bottom: 8px;
    color: var(--red-dark);
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.author-card__body > strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.65rem, 2.5vw, 2.2rem);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.author-card__bio {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.83rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.author-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 25px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 780;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.author-card__footer > span:last-child {
    color: var(--red);
    font-size: 1rem;
}

.home-authors {
    padding-block: clamp(42px, 5vw, 64px);
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.home-authors .section-heading {
    margin-bottom: clamp(22px, 2.5vw, 30px);
}

.home-authors .section-heading--compact h2 {
    font-size: clamp(2.65rem, 4vw, 4rem);
}

.home-authors .authors-grid--featured > .author-card:only-child {
    grid-column: 1 / -1;
    width: min(100%, 820px);
    justify-self: center;
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__link {
    display: grid;
    min-height: 300px;
    grid-template-columns: clamp(250px, 24vw, 290px) minmax(0, 1fr);
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__portrait {
    height: 100%;
    min-height: 300px;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__portrait > img {
    object-position: center 35%;
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__body {
    padding: clamp(30px, 4vw, 48px);
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__body > strong {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__bio {
    max-width: 66ch;
    font-size: 0.95rem;
    line-height: 1.6;
    -webkit-line-clamp: 4;
}

.home-authors .authors-grid--featured > .author-card:only-child .author-card__footer {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.home-authors .author-card__body {
    padding: 21px;
}

.home-authors .author-card__body > strong {
    font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

.authors-empty {
    display: grid;
    grid-template-columns: auto minmax(0, 620px);
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 6vw, 70px);
    min-height: 300px;
    padding: clamp(30px, 6vw, 72px);
    border: 1px dashed var(--line-strong);
    background: var(--paper);
}

.authors-empty > span {
    color: var(--red);
    font-family: var(--serif);
    font-size: clamp(6rem, 15vw, 11rem);
    font-weight: 700;
    line-height: 0.8;
}

.authors-empty h2 {
    margin-bottom: 15px;
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.authors-empty div > p:last-child {
    margin: 0;
    color: var(--muted);
}

.author-profile {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.author-profile__inner {
    display: grid;
    grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(50px, 9vw, 125px);
    min-height: clamp(580px, 68vw, 760px);
    padding-block: clamp(66px, 9vw, 118px);
}

.author-profile__portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 50% 50% 9px 9px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.author-profile__portrait > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-placeholder--profile::before {
    top: auto;
    right: -0.05em;
    bottom: -0.24em;
    font-size: clamp(16rem, 34vw, 27rem);
}

.author-placeholder--profile b {
    font-size: clamp(7rem, 17vw, 12rem);
}

.author-profile__content {
    min-width: 0;
}

.author-profile__back {
    display: inline-block;
    margin-bottom: clamp(38px, 6vw, 70px);
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.author-profile__back:hover {
    color: var(--red-dark);
}

.author-profile h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(3.5rem, 7.5vw, 7.2rem);
    overflow-wrap: anywhere;
}

.author-profile__count {
    color: var(--red-dark);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.author-profile__bio {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--muted);
    font-family: var(--serif);
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    line-height: 1.62;
    overflow-wrap: anywhere;
}

.author-profile__flag {
    display: flex;
    width: 90px;
    height: 4px;
    margin-top: 38px;
}

.author-profile__flag span {
    flex: 1;
}

.author-profile__flag span:nth-child(1) {
    background: var(--flag-red);
}

.author-profile__flag span:nth-child(2) {
    background: var(--flag-yellow);
}

.author-profile__flag span:nth-child(3) {
    background: var(--flag-green);
}

.author-stories {
    background: var(--white);
}

.author-stories .section-heading h2 {
    max-width: 880px;
    overflow-wrap: anywhere;
}

/* Editorial desks */
.desks {
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.section-heading--compact {
    align-items: center;
}

.section-heading--compact h2 {
    font-size: clamp(2.5rem, 4.2vw, 4.3rem);
}

.section-heading__intro {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.desk-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
    border-left: 1px solid var(--line-strong);
}

.desk-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    min-width: 0;
    min-height: 178px;
    padding: 28px;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.desk-card > span {
    grid-row: span 2;
    margin-right: 24px;
    color: var(--red);
    font-size: 0.62rem;
    font-weight: 850;
}

.desk-card strong {
    align-self: end;
    min-width: 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.3vw, 2.2rem);
    line-height: 1;
    overflow-wrap: anywhere;
}

.desk-card small {
    display: -webkit-box;
    align-self: start;
    min-width: 0;
    margin-top: 10px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.7rem;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.desk-card:hover {
    position: relative;
    z-index: 1;
    background: var(--ink);
    color: #fff;
    transform: translateY(-3px);
}

.desk-card:hover small {
    color: rgba(255, 255, 255, 0.6);
}

/* Manifesto */
.manifesto {
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.manifesto__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: clamp(70px, 11vw, 150px);
}

.manifesto .eyebrow {
    color: var(--yellow);
}

.manifesto__statement {
    position: relative;
}

.manifesto__statement::after {
    position: absolute;
    right: -55px;
    bottom: -60px;
    width: 175px;
    height: 175px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025), 0 0 0 56px rgba(255, 255, 255, 0.018);
    content: "";
}

.manifesto__statement h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 5vw, 5.4rem);
    overflow-wrap: anywhere;
}

.manifesto__statement > p:last-child {
    max-width: 620px;
    min-width: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.02rem;
    overflow-wrap: anywhere;
}

.manifesto__values {
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.manifesto__values li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 24px;
    padding-block: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.manifesto__values li > span {
    color: var(--yellow);
    font-size: 0.67rem;
    font-weight: 850;
}

.manifesto__values h3 {
    margin-bottom: 7px;
    font-size: 1.7rem;
}

.manifesto__values p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.contact-callout {
    background: var(--yellow);
    color: var(--ink);
}

.contact-callout__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(250px, 0.6fr) auto;
    align-items: center;
    gap: 48px;
    min-height: 220px;
    padding-block: 38px;
}

.contact-callout .eyebrow {
    margin-bottom: 8px;
    color: var(--red-dark);
}

.contact-callout h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    overflow-wrap: anywhere;
}

.contact-callout__inner > p {
    min-width: 0;
    margin-bottom: 0;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
}

.story-button--light {
    margin-top: 0;
    white-space: nowrap;
}

/* Footer */
.site-footer {
    background: #0d1815;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) minmax(160px, 0.5fr) minmax(220px, 0.7fr);
    gap: 70px;
    padding-block: 76px 58px;
}

.brand--footer {
    width: 260px;
}

.footer-brand > p {
    max-width: 380px;
    min-width: 0;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--serif);
    font-size: 1.25rem;
    overflow-wrap: anywhere;
}

.footer-column {
    display: grid;
    align-content: start;
    min-width: 0;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 9px;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a {
    max-width: 100%;
    width: fit-content;
    font-size: 0.82rem;
    overflow-wrap: anywhere;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.66rem;
}

.footer-bottom p {
    margin: 0;
}

.flag-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 5px;
}

.flag-line span:first-child {
    background: var(--flag-red);
}

.flag-line span:nth-child(2) {
    background: var(--flag-yellow);
}

.flag-line span:last-child {
    background: var(--flag-green);
}

@media (max-width: 1040px) {
    :root {
        --shell: min(100% - 36px, 860px);
    }

    .masthead__inner {
        min-height: 78px;
    }

    .masthead__inner > .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .masthead__actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .has-js .primary-nav {
        position: absolute;
        top: 112px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 18px var(--shell-gap, 18px) 28px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 20px 35px rgba(19, 35, 31, 0.1);
    }

    .has-js .primary-nav.is-open {
        display: grid;
    }

    .primary-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: stretch;
        gap: 0;
    }

    .primary-nav a {
        max-width: none;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .primary-nav a::after {
        display: none;
    }

    .menu-button {
        display: grid;
    }

    .home-intro__grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .home-intro__copy {
        grid-template-columns: minmax(0, 570px) max-content;
        align-items: end;
        max-width: 760px;
    }

    .lead-layout {
        grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.85fr);
    }

    .lead-story__content {
        width: min(78%, 590px);
        padding: 30px;
    }

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

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

    .authors-grid--featured {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__link {
        min-height: 270px;
        grid-template-columns: clamp(210px, 31vw, 270px) minmax(0, 1fr);
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__portrait {
        min-height: 270px;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__body {
        padding: 30px;
    }

    .author-profile__inner {
        grid-template-columns: minmax(250px, 330px) minmax(0, 1fr);
        gap: clamp(38px, 7vw, 70px);
    }

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

    .manifesto__grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .contact-callout__inner {
        grid-template-columns: 1fr 1fr;
    }

    .contact-callout .story-button {
        width: fit-content;
    }
}

@media (max-width: 900px) {
    .lead-layout {
        grid-template-columns: 1fr;
    }

    .popular-list {
        grid-template-rows: 1fr;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .popular-list li {
        min-height: 148px;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 7px;
        padding: 14px 12px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .popular-list li:last-child {
        border-right: 0;
    }

    .popular-list__number {
        text-align: left;
    }

    .popular-list h3 {
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: calc(100vw - 30px);
    }

    .identity-line__place,
    .editor-button {
        display: none;
    }

    .identity-line__inner {
        justify-content: space-between;
        gap: 10px;
    }

    .identity-line__inner > p:first-child {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .identity-line__tools {
        gap: 0;
    }

    .masthead__inner {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .masthead__actions {
        grid-column: 2;
    }

    .brand {
        width: min(205px, calc(100vw - 139px));
    }

    .has-js .primary-nav {
        top: 112px;
    }

    .ticker__inner {
        width: 100%;
        padding-left: 15px;
    }

    .editorial-nav__inner {
        width: 100%;
        padding-left: 15px;
    }

    .editorial-nav__inner > p {
        display: none;
    }

    .editorial-nav a:first-child {
        border-left: 0;
    }

    .ticker strong {
        padding-right: 17px;
    }

    .ticker__items a {
        max-width: 260px;
        padding-inline: 20px;
    }

    .search-panel form {
        width: calc(100% - 44px);
        margin-inline: 0 44px;
    }

    .search-panel form > div {
        display: grid;
    }

    .search-panel input {
        border-radius: 7px 7px 0 0;
    }

    .search-panel form button {
        min-height: 47px;
        border-top: 0;
        border-left: 1px solid var(--ink);
        border-radius: 0 0 7px 7px;
    }

    .search-close {
        top: 19px;
    }

    .home-intro {
        padding-block: 32px 34px;
    }

    .home-intro h1 {
        font-size: clamp(2rem, 7.8vw, 2.5rem);
        line-height: 0.98;
        white-space: normal;
    }

    .home-intro h1 em {
        display: block;
    }

    .home-intro__edition {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 22px;
    }

    .home-intro__copy {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-intro__word {
        bottom: -0.13em;
    }

    .section-label b,
    .section-label > p:last-child {
        display: none;
    }

    .empty-news {
        grid-template-columns: 1fr;
    }

    .lead-story {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        aspect-ratio: auto;
        min-height: 0;
        background: var(--white);
    }

    .lead-story__media {
        grid-area: 1 / 1;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .lead-story__media::after {
        display: none;
    }

    .lead-story__content {
        width: 100%;
        grid-area: 2 / 1;
        align-self: stretch;
        padding: 25px 22px 28px;
        color: var(--ink);
    }

    .lead-story h2 {
        margin: 0;
        color: var(--ink);
        font-size: clamp(1.75rem, 8.4vw, 2.55rem);
        line-height: 1.04;
        text-shadow: none;
    }

    .lead-carousel__controls {
        min-height: 56px;
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        gap: 4px;
        padding: 7px 8px;
    }

    .lead-carousel__arrow {
        width: 36px;
        height: 36px;
    }

    .lead-carousel__pagination {
        gap: 1px;
    }

    .lead-carousel__pagination button {
        min-width: 24px;
        min-height: 34px;
        padding-inline: 3px;
        font-size: 0.61rem;
    }

    .lead-carousel__position {
        display: none;
    }

    .lead-carousel__pause {
        min-height: 34px;
        padding-inline: 7px;
        font-size: 0.59rem;
    }

    .popular-list {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
    }

    .popular-list li {
        min-height: 82px;
        grid-template-columns: 54px minmax(0, 1fr);
        align-content: center;
        gap: 9px;
        padding: 10px 14px 10px 8px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .popular-list li:last-child {
        border-bottom: 0;
    }

    .popular-list__number {
        text-align: center;
    }

    .popular-list h3 {
        font-size: 0.96rem;
        -webkit-line-clamp: 3;
    }

    .empty-news img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .topic-bar__inner > p {
        padding-right: 22px;
    }

    .topic-bar a {
        padding-inline: 20px;
    }

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

    .section-heading h2 {
        font-size: clamp(2.6rem, 14vw, 4.3rem);
    }

    .authors-hero__inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 42px;
        min-height: 0;
        padding-block: 78px 92px;
    }

    .authors-hero h1 {
        font-size: clamp(3.45rem, 17vw, 5.8rem);
    }

    .authors-hero__intro {
        max-width: 570px;
    }

    .authors-hero__word {
        right: -0.08em;
        bottom: -0.17em;
        font-size: 43vw;
    }

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

    .author-card__link {
        display: grid;
        grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
    }

    .author-card__portrait {
        height: 100%;
        min-height: 250px;
        aspect-ratio: auto;
    }

    .author-card__body {
        padding: 24px 22px;
    }

    .author-card__body > strong {
        font-size: clamp(1.55rem, 7vw, 2.1rem);
    }

    .home-authors {
        padding-block: 38px;
    }

    .home-authors .section-heading {
        gap: 14px;
        margin-bottom: 24px;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__link {
        display: grid;
        min-height: 220px;
        grid-template-columns: clamp(150px, 34vw, 220px) minmax(0, 1fr);
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__portrait {
        min-height: 220px;
        aspect-ratio: auto;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__body {
        padding: 22px;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__body > strong {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__bio {
        -webkit-line-clamp: 2;
    }

    .authors-empty {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .author-profile__inner {
        grid-template-columns: 1fr;
        gap: 46px;
        min-height: 0;
        padding-block: 62px 78px;
    }

    .author-profile__portrait {
        width: min(82vw, 360px);
        justify-self: center;
    }

    .author-profile__back {
        margin-bottom: 34px;
    }

    .author-profile h1 {
        font-size: clamp(3.25rem, 16vw, 5.4rem);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-card--wide {
        display: block;
        grid-column: auto;
    }

    .story-card--wide .story-card__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .story-card--wide .story-card__body {
        padding: 24px 20px 28px;
    }

    .story-card--wide h3 {
        font-size: clamp(1.8rem, 9vw, 2.55rem);
    }

    .section-heading__intro {
        max-width: none;
    }

    .desk-grid {
        grid-template-columns: 1fr;
    }

    .desk-card {
        min-height: 138px;
    }

    .manifesto__statement::after {
        display: none;
    }

    .manifesto__statement h2 {
        font-size: clamp(2.9rem, 14vw, 4.5rem);
    }

    .manifesto__values li {
        gap: 15px;
    }

    .contact-callout__inner {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-block: 52px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }
}

@media (max-width: 420px) {
    .identity-line {
        font-size: 0.62rem;
    }

    .identity-line__inner {
        justify-content: center;
    }

    .identity-line__inner > p:first-child {
        display: none;
    }

    .language-switcher a {
        min-width: 29px;
        height: 22px;
    }

    .brand {
        width: min(185px, calc(100vw - 119px));
    }

    .round-button,
    .menu-button {
        width: 39px;
        height: 39px;
    }

    .author-card__link {
        display: flex;
    }

    .author-card__portrait {
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .home-authors {
        padding-block: 34px;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__link {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__portrait {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__body {
        padding: 20px 18px 18px;
    }

    .home-authors .authors-grid--featured > .author-card:only-child .author-card__bio {
        -webkit-line-clamp: 3;
    }

    .authors-hero__intro {
        padding-left: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
