/* =========================================================
   TRIBUNE TYPOGRAPHY
   Files expected in:
   public/fonts/newrail/
   public/fonts/portrait/
   ========================================================= */

@font-face {
    font-family: 'New Rail Alphabet';
    src: url('/fonts/newrail/NewRailAlphabet-LightWEB.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Rail Alphabet';
    src: url('/fonts/newrail/NewRailAlphabet-MediumWEB.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Rail Alphabet';
    src: url('/fonts/newrail/NewRailAlphabet-MediumItalicWEB.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'New Rail Alphabet';
    src: url('/fonts/newrail/NewRailAlphabet-BoldWEB.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Rail Alphabet';
    src: url('/fonts/newrail/NewRailAlphabet-BoldItalicWEB.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Portrait Text is intentionally reserved for the Tribune Views SECTION TITLE only. */
@font-face {
    font-family: 'Portrait Text';
    src: url('/fonts/portrait/PortraitText-Heavy-Web.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --red: #e2262a;
    --red-dark: #be171d;
    --black: #050505;
    --ink: #111111;
    --muted: #6b6b6b;
    --paper: #ffffff;
    --line: #d9d9d9;
    --shell: 1460px;
    --header-height: 74px;

    /* Font families */
    --rail: 'New Rail Alphabet', Arial, sans-serif;
    --portrait-text: 'Portrait Text', Georgia, serif;

    /* Keep legacy variables mapped to New Rail so no old selector falls back to another font. */
    --serif: 'New Rail Alphabet', Arial, sans-serif;
    --sans: 'New Rail Alphabet', Arial, sans-serif;
    --condensed: 'New Rail Alphabet', Arial, sans-serif;

    /* Shared type scale */
    --type-section-title: clamp(32px, 3vw, 48px);
    --type-section-subtitle: clamp(20px, 2vw, 30px);
    --type-display-title: clamp(38px, 3.35vw, 60px);
    --type-card-title: clamp(16px, 1.5vw, 20px);
    --type-body: clamp(15px, 1.1vw, 18px);
    --type-small: 13px;
    --type-caption: 11px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--rail);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; background: #fff; padding: 12px 16px; border: 2px solid #000; }
.skip-link:focus { top: 12px; }

.site-header { background: #fff; position: relative; z-index: 100; }
.site-header__inner { min-height: var(--header-height); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.site-header__left { display: flex; align-items: center; gap: 22px; }
.wordmark {
    width: clamp(120px, 10vw, 165px);
    display: block;
    justify-self: center;
    color: #000;
    text-decoration: none;
}

.wordmark__logo {
    display: block;
    width: 100%;
    height: auto;
    fill: currentColor;
}.desktop-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(24px, 3vw, 56px); font-family: var(--rail); font-size: var(--type-small); font-weight: 400; }
.desktop-nav a { text-decoration: none; padding-block: 9px; }
.desktop-nav .active { border: 1px solid var(--ink); padding-inline: 34px; }
.login-link { font-family: var(--rail); font-size: 12px; text-decoration: none; }
.icon-button { border: 0; padding: 5px; background: transparent; width: 30px; height: 30px; display: inline-grid; place-items: center; cursor: pointer; }
.search-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.mobile-menu-toggle { display: none; }
.mobile-menu-toggle span { display: block; width: 18px; height: 1.5px; background: #000; margin: 2px 0; }
.mobile-nav { display: none; }
.support-strip { display: block; text-align: center; background: #ed4845; color: #fff; padding: 16px 20px; text-transform: uppercase; text-decoration: none; font-family: var(--rail); font-size: 12px; font-weight: 700; line-height: 1.35; }
.support-strip span { text-decoration: underline; text-underline-offset: 2px; }

.carousel { position: relative; }
.carousel__viewport { position: relative; overflow: hidden; }
.carousel__slide { display: none; }
.carousel__slide.is-active { display: grid; }
.carousel-arrow { position: absolute; top: 50%; z-index: 26; width: 42px; height: 42px; border: 0; padding: 0; background: transparent; color: #111; display: grid; place-items: center; cursor: pointer; transform: translateY(-50%); }
.carousel-arrow span { width: 21px; height: 21px; border-radius: 50%; background: rgba(255,255,255,.7); display: grid; place-items: center; font: 18px/1 Arial, sans-serif; padding-bottom: 2px; transition: background .2s, transform .2s; }
.carousel-arrow:hover span { background: #fff; transform: scale(1.06); }
.carousel-arrow--prev { left: 24px; }
.carousel-arrow--next { right: 24px; }
.carousel-dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.carousel-dots button { width: 11px; height: 11px; border: 1px solid currentColor; background: transparent; padding: 0; cursor: pointer; }
.carousel-dots button.is-active { background: currentColor; }

.hero-carousel { background: #000; color: #fff; }
.hero-carousel .carousel__viewport { min-height: clamp(570px, 72vh, 820px); }
.hero-slide { position: absolute; inset: 0; min-height: inherit; align-items: stretch; }
.hero-slide.is-active { position: relative; }
.hero-slide__media, .hero-slide__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide__media img { object-fit: cover; }
.hero-slide__veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.04) 45%, rgba(0,0,0,.14) 100%), linear-gradient(0deg, rgba(0,0,0,.62) 0%, transparent 45%); }
.hero-slide__content { position: relative; z-index: 5; min-height: inherit; display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: clamp(44px, 7vh, 86px); padding-bottom: 170px; pointer-events: none; }
.hero-slide__brand-logo { width: auto; max-width: min(240px, 50vw); max-height: 74px; margin: 0 0 18px; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(0,0,0,.25)); }
.hero-slide__brand { margin: 0 0 14px; font-family: var(--rail); font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: lowercase; }
.hero-slide h1 {
    margin: 0;
    /*width: min(830px, 74vw);*/
    font-family: var(--rail);
    font-size: clamp(34px, 4.2vw, 62px);
    font-weight: 700;
    /*line-height: .98;*/
    letter-spacing: -.025em;
    text-wrap: balance;
    text-shadow: 0 2px 22px rgba(0,0,0,.25);
}
.hero-slide__supporting {
    max-width: 680px;
    margin: 18px auto 0;
    font-family: var(--rail);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-dots { position: absolute; z-index: 22; left: 50%; transform: translateX(-50%); bottom: 15px; color: #fff; }
.hero-carousel.has-active-audio .hero-dots { bottom: 15px; }

/* Fixed programme row shown over every hero slide. */
.hero-programmes {
    position: absolute;
    z-index: 24;
    left: 50%;
    bottom: 135px;
    transform: translateX(-50%);
    width: min(calc(100% - 140px), 900px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 76px);
    color: #fff;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.hero-programme { display: inline-flex; align-items: center; justify-content: center; gap: 9px; white-space: nowrap; font-weight: 700; }
.hero-programme--postscript { font-size: clamp(18px, 1.75vw, 27px); letter-spacing: -.035em; }
.hero-programme__postscript-word { font-weight: 800; }
.hero-programme__roundel { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #111; text-shadow: none; }
.hero-programme__roundel span { font-size: 6px; font-weight: 800; line-height: .9; text-align: center; letter-spacing: -.02em; }
.hero-programme--explainer { font-size: clamp(12px, 1.05vw, 16px); line-height: .95; }
.hero-programme--conversation { font-size: clamp(15px, 1.35vw, 21px); gap: 8px; }
.hero-programme__icon { display: block; flex: 0 0 auto; color: #fff; filter: drop-shadow(0 2px 7px rgba(0,0,0,.35)); }
.hero-programme__icon--explainer { width: 42px; height: auto; }
.hero-programme__icon--conversation { width: 43px; height: auto; }

/* Hero audio player */
.audio-dock {
    width: min(calc(100% - 48px), 960px);
    position: absolute;
    z-index: 15;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 68px 52px minmax(170px, 340px) auto minmax(100px, 1fr) auto minmax(112px, 140px);
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 10px 16px 10px 10px;
    color: #fff;
    background: rgba(13, 4, 18, .72);
    border: 1px solid rgba(255,255,255,.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.audio-dock__cover { width: 68px; height: 58px; object-fit: cover; background: #1e1e1e; }
.audio-dock__cover--placeholder { display: grid; place-items: center; font: 700 9px/1 var(--rail); letter-spacing: -.2px; }
.audio-dock__play { width: 42px; height: 42px; border: 0; border-radius: 50%; display: grid; place-items: center; cursor: pointer; background: var(--red); color: #fff; }
.audio-dock__play svg { width: 18px; height: 18px; fill: currentColor; }
.audio-dock__play .pause-icon { display: none; }
.audio-dock.is-playing .audio-dock__play .play-icon { display: none; }
.audio-dock.is-playing .audio-dock__play .pause-icon { display: block; }
.audio-dock__meta { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.audio-dock__meta strong { font-family: var(--rail); font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.audio-dock__meta span { font-family: var(--rail); font-size: 10px; font-weight: 400; text-transform: uppercase; opacity: .75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.audio-dock__time { font-family: var(--rail); font-size: 10px; font-variant-numeric: tabular-nums; }
.audio-dock__progress { width: 100%; min-width: 100px; accent-color: var(--red); cursor: pointer; }

/* Desktop: mute icon + volume level are always visible. */
.audio-dock__volume { display: flex; align-items: center; justify-content: flex-end; gap: 8px; min-width: 0; }
.audio-dock__mute { flex: 0 0 auto; width: 30px; height: 30px; padding: 5px; background: transparent; border: 0; color: #fff; cursor: pointer; }
.audio-dock__mute svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.audio-dock__mute .muted-icon { display: none; }
.audio-dock.is-muted .audio-dock__mute .volume-icon { display: none; }
.audio-dock.is-muted .audio-dock__mute .muted-icon { display: block; }
.audio-dock__volume-slider {
    --volume-level: 100%;
    width: 78px;
    height: 16px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}
.audio-dock__volume-slider::-webkit-slider-runnable-track {
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--red) 0 var(--volume-level), rgba(255,255,255,.58) var(--volume-level) 100%);
}
.audio-dock__volume-slider::-webkit-slider-thumb {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border: 0;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
}
.audio-dock__volume-slider::-moz-range-track {
    height: 2px;
    border: 0;
    border-radius: 2px;
    background: rgba(255,255,255,.58);
}
.audio-dock__volume-slider::-moz-range-progress {
    height: 2px;
    border-radius: 2px;
    background: var(--red);
}
.audio-dock__volume-slider::-moz-range-thumb {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: #fff;
}

.section-block { padding: clamp(48px, 5.5vw, 78px) 0 clamp(18px, 2vw, 30px);}
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 22px; padding-bottom: 18px; }
.section-kicker {
    margin: 0 0 6px;
    font-family: var(--rail);
    font-size: var(--type-small);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
}
.section-heading h2 {
    margin: 0;
    font-family: var(--rail);
    font-size: var(--type-section-title);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
}

/* Only this title uses Portrait Text. All other text stays New Rail Alphabet. */
.videos-section .section-heading h2 {
    /*font-family: var(--portrait-text);*/
    font-weight: 800;
    letter-spacing: -.02em;
}

.section-heading--views img { width: min(210px, 27vw); height: auto; }
.video-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 34px); row-gap: 44px; }
.video-card { min-width: 0; text-decoration: none; display: block; }
.video-card__media { position: relative; display: block; overflow: hidden; background: #111; aspect-ratio: 16 / 9; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video-card:hover .video-card__media img { transform: scale(1.025); }
.video-card__play { position: absolute; inset: 0; display: grid; place-items: center; opacity: .95; }
.video-card__play::before { content: ''; width: 52px; height: 38px; border-radius: 7px; background: rgba(255,255,255,.95); box-shadow: 0 5px 24px rgba(0,0,0,.18); }
.video-card__play svg { position: absolute; width: 20px; height: 20px; fill: #111; }
.video-card__body { display: block; text-align: center; padding: 16px 10px 0; }
.video-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-family: var(--rail);
    font-size: var(--type-caption);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.video-card__body strong {
    display: block;
    font-family: var(--rail);
    font-size: var(--type-card-title);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

/* In Conversation */
.conversation-section {
    background: #000;
    color: #fff;
    padding: clamp(54px, 6vw, 92px) 0 34px;
}
.conversation-track {
    position: relative;
    min-height: 500px;
}
.conversation-slide {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr);
    grid-template-areas: "video copy";
    align-items: center;
    gap: clamp(44px, 6vw, 100px);
}
.conversation-copy {
    grid-area: copy;
    width: 100%;
    max-width: 520px;
    padding: 20px 0;
    align-self: center;
}
.conversation-eyebrow {
    margin: 0;
    font-family: var(--rail);
    font-size: var(--type-section-subtitle);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.025em;
}
.conversation-rule {
    width: 74px;
    height: 3px;
    background: var(--red);
    margin-top: 14px;
    margin-bottom: 50px;
}

/* Large red opening quotation mark. */
.quote-mark {
    display: block;
    width: fit-content;
    height: 30px;
    margin: 0 0 12px 0;
    color: var(--red);
    font: 700 10vw/.62 var(--rail);
    letter-spacing: -.08em;
    margin-left: -7px;
}

/* Main editorial title. It wraps naturally while keeping the same composition. */
.conversation-copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--rail);
    font-size: var(--type-section-subtitle);
    font-weight: 700;
    /*line-height: .94;*/
    letter-spacing: -.035em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
}

/* Closing quote: same glyph rotated 180 degrees and aligned to the lower-right. */
.quote-mark.rotated {
    display: block;
    width: 100%;
    /*height: auto;*/
    margin: 2px 0 0;
    text-align: right;
    line-height: .62;
}
.quote-mark.rotated > span {
    display: flex;
    margin-right: 18px;
    transform: rotate(180deg);
    transform-origin: center;
    height: 3px;
}

/* Bottom red rule from the reference design without requiring extra markup. */
.quote-mark.rotated::after {
    content: '';
    display: block;
    width: 78px;
    height: 3px;
    margin-top: 24px;
    margin-left: 4px;
    background: var(--red);
}

.conversation-description {
    margin: 26px 0 0;
    max-width: 46ch;
    color: #d2d2d2;
    font-family: var(--rail);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: 1.55;
}
.conversation-person {
    width: fit-content;
    max-width: 100%;
    margin: 24px 0 0 4px;
    padding: 0;
    border: 0;
    font-family: var(--rail);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}
.conversation-video {
    grid-area: video;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #121212;
    width: 100%;
    overflow: hidden;
}
.conversation-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.conversation-video__error { position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; text-align: center; color: #999; }
.conversation-controls { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 18px; max-width: 260px; margin: 28px auto 0; }
.conversation-controls > button { width: 44px; height: 38px; border: 1px solid #555; background: transparent; color: #fff; cursor: pointer; }
.conversation-dots { color: #fff; }

.site-footer { border-top: 1px solid #e6e6e6; padding: 34px 0; }
.site-footer__inner { display: grid; grid-template-columns: 1fr 1fr auto 1fr 1fr; align-items: center; gap: 20px; font-family: var(--rail); font-size: 12px; }
.site-footer__inner a { text-decoration: none; }
.site-footer__inner > :nth-child(4), .site-footer__inner > :nth-child(5) { text-align: right; }
.site-footer__wordmark { font: 700 18px/1 var(--rail); letter-spacing: -1px; }

:focus-visible { outline: 3px solid #2f7bf5; outline-offset: 3px; }

@media (max-width: 1100px) {
    .desktop-nav { gap: 20px; }
    .desktop-nav .active { padding-inline: 18px; }
    .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .conversation-slide {
        grid-template-columns: minmax(0, 1.25fr) minmax(270px, .85fr);
        gap: 42px;
    }
    .conversation-copy h2 {
        font-size: clamp(36px, 4.25vw, 52px);
        /*max-width: 12ch;*/
    }
    .quote-mark { font-size: 88px; }
}

@media (max-width: 820px) {
    :root { --header-height: 62px; }
    .shell { width: min(calc(100% - 32px), var(--shell)); }
    .site-header__inner { grid-template-columns: 1fr auto 1fr; }
    .mobile-menu-toggle { display: inline-grid; }
    .search-button, .login-link, .desktop-nav { display: none; }
    .site-header__left { gap: 4px; }
    .mobile-nav { position: absolute; left: 0; right: 0; top: var(--header-height); background: #fff; border-top: 1px solid #ddd; padding: 12px 16px 18px; box-shadow: 0 12px 28px rgba(0,0,0,.1); }
    .mobile-nav:not([hidden]) { display: grid; }
    .mobile-nav a { padding: 13px 6px; border-bottom: 1px solid #eee; text-decoration: none; font-weight: 700; }
    .support-strip { padding-block: 12px; font-size: 10px; }

    .hero-carousel .carousel__viewport { min-height: clamp(520px, 72svh, 720px); }
    .hero-slide__content { align-items: center; text-align: center; justify-content: flex-start; padding-top: clamp(46px, 8vh, 76px); padding-bottom: 165px; }
    .hero-slide h1 { width: min(650px, 84vw); font-size: clamp(32px, 7vw, 52px); }
    .hero-slide__supporting { margin-left: 0; max-width: min(540px, 80vw); }
    .hero-slide__veil { background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.1) 90%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 55%); }

    /* Mobile audio: keep mute/unmute only; hide the volume level slider. */
    .audio-dock {
        grid-template-columns: 42px minmax(0, 1fr) 34px;
        gap: 10px;
        bottom: 50px;
        padding: 10px 12px;
        min-height: 68px;
    }
    .audio-dock__cover,
    .audio-dock__time,
    .audio-dock__duration { display: none; }
    .audio-dock__volume { width: 34px; justify-content: center; gap: 0; }
    .audio-dock__volume-slider { display: none; }
    .audio-dock__mute { width: 34px; height: 34px; padding: 6px; }
    .audio-dock__play { width: 40px; height: 40px; }
    .audio-dock__progress { grid-column: 2 / 4; grid-row: 2; min-width: 0; margin-top: -3px; }
    .audio-dock__meta strong { font-size: 14px; }

    .hero-carousel.has-active-audio .hero-dots { bottom: 15px; }
    .carousel-arrow { width: 36px; height: 36px; }
    .carousel-arrow span { width: 18px; height: 18px; font-size: 16px; }
    .carousel-arrow--prev { left: 10px; }
    .carousel-arrow--next { right: 10px; }
    .conversation-track { min-height: 0; }
    .hero-programmes { bottom: 114px; width: min(calc(100% - 76px), 700px); gap: clamp(18px, 4vw, 38px); }
    .hero-programme--postscript { font-size: clamp(15px, 2.8vw, 21px); }
    .hero-programme__roundel { width: 30px; height: 30px; }
    .hero-programme__roundel span { font-size: 5px; }
    .hero-programme--explainer { font-size: clamp(10px, 2vw, 13px); }
    .hero-programme--conversation { font-size: clamp(12px, 2.4vw, 17px); }
    .hero-programme__icon--explainer { width: 34px; }
    .hero-programme__icon--conversation { width: 36px; }

    .conversation-slide {
        grid-template-columns: 1fr;
        grid-template-areas: "copy" "video";
        gap: 26px;
    }
    .conversation-copy {
        max-width: 680px;
        padding-bottom: 0;
    }
    .conversation-eyebrow { font-size: var(--type-section-subtitle); }
    .conversation-rule { margin-bottom: 28px; }
    .quote-mark { font-size: 80px; margin-bottom: 10px; }
    .conversation-copy h2 {
        max-width: 13ch;
        font-size: clamp(36px, 7vw, 48px);
        line-height: .96;
    }
    .quote-mark.rotated > span { margin-right: 16px; }
    .quote-mark.rotated::after { margin-top: 20px; }

    .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
    .site-footer__wordmark { grid-column: 1 / -1; grid-row: 1; text-align: center; font-size: 24px; margin-bottom: 4px; }
    .site-footer__inner > :nth-child(4), .site-footer__inner > :nth-child(5) { text-align: left; }
}

@media (max-width: 560px) {
    .wordmark {
        width: 120px;
    }
    .tribune-views-red-line {

        width: 76px;


    }
    .tribune-hero-red-line {

        width: 76px;


    }
    .audio-dock { width: min(calc(100% - 24px), 960px); }
    .shell { width: min(calc(100% - 24px), var(--shell)); }
    /*.wordmark { font-size: 27px; }*/
    .support-strip { font-size: 9px; }
    .support-strip span { display: block; margin-top: 2px; }
    .hero-carousel .carousel__viewport { min-height: 640px; }
    .hero-slide__content { padding-top: 54px; padding-inline: 5px; }
    .hero-slide h1 { width: 88vw; font-size: clamp(33px, 10vw, 46px); line-height: 1.02; }
    .hero-slide__brand { font-size: 12px; }
    .hero-slide__supporting { max-width: 85vw; font-size: 15px; }
    .carousel-arrow { top: 46%; }
    .carousel-arrow span { background: rgba(255,255,255,.58); }
    .hero-programmes {
        bottom: 108px;
        width: min(calc(100% - 50px), 520px);
        gap: 12px;
        justify-content: space-between;
    }
    .hero-programme { gap: 5px; }
    .hero-programme--postscript { font-size: 13px; }
    .hero-programme__roundel { width: 24px; height: 24px; }
    .hero-programme__roundel span { font-size: 4px; }
    .hero-programme--explainer { font-size: 8px; }
    .hero-programme--conversation { font-size: 10px; }
    .hero-programme__icon--explainer { width: 27px; }
    .hero-programme__icon--conversation { width: 28px; }

    .section-block { padding-block: 52px; }
    .section-heading { align-items: flex-start; margin-bottom: 26px; }
    .section-heading--views img { width: 145px; }
    .section-heading h2 { font-size: var(--type-section-title); }
    .video-grid { grid-template-columns: 1fr; gap: 30px; }
    .video-card__body strong { font-size: var(--type-card-title); }

    .conversation-section { padding-top: 48px; }
    .conversation-eyebrow { font-size: var(--type-section-subtitle); }
    .conversation-rule { margin-top: 12px; margin-bottom: 24px; }
    .quote-mark { font-size: 110px; margin-bottom: 8px; }
    .conversation-copy h2 {
        /*max-width: 15ch;*/
        max-width: unset;
        font-size: clamp(24px, 8vw, 42px);
        line-height: .97;
    }
    .quote-mark.rotated > span { margin-right: 10px; }
    .quote-mark.rotated::after {
        width: 74px;
        margin-top: 18px;
        margin-left: 2px;
    }
    .conversation-description { margin-top: 22px; font-size: 15px; }
    .conversation-person { margin-top: 20px; }
    .conversation-controls { margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}
.tribune-views-red-line {
    background-color: var(--red);
    height: 3px;
    width: 120px;
    margin-top: 10px;
    margin-bottom: 10px;

}
.tribune-hero-red-line {
    background-color: var(--red);
    height: 3px;
    width: 120px;
    margin-top: 25px;
    margin-bottom: 30px;

}