:root {
    --navy-950: #02070c;
    --navy-900: #061321;
    --navy-800: #0a1d30;
    --navy-700: #102a43;
    --red-700: #721114;
    --red-600: #991b1e;
    --red-500: #b52227;
    --gold: #c5a35a;
    --gold-light: #dfc98e;
    --paper: #f5f3ee;
    --paper-2: #ece9e1;
    --white: #ffffff;
    --ink: #101820;
    --muted: #66737d;
    --line: #d6d6d2;
    --max: 1260px;
    --shadow: 0 22px 60px rgba(2, 7, 12, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.shell {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 999;
    padding: 10px 14px;
    background: white;
}

.topline {
    background: var(--navy-950);
    color: #cbd3da;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.topline-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.topline-left,
.topline-links {
    display: flex;
    align-items: center;
    gap: 11px;
}

.topline-links a {
    color: #dce2e7;
    text-decoration: none;
}

.topline-divider {
    color: #596674;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-500);
    box-shadow: 0 0 0 4px rgba(181,34,39,.13);
}

.masthead {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            112deg,
            var(--navy-900) 0%,
            var(--navy-800) 55%,
            #0e263e 100%
        );
    color: white;
}

.masthead::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -180px;
    top: -330px;
    border-radius: 50%;
    border: 90px solid rgba(255,255,255,.025);
}

.masthead-flag {
    position: absolute;
    right: 0;
    top: 0;
    width: 46%;
    height: 100%;
    opacity: .07;
    background:
        repeating-linear-gradient(
            to bottom,
            #fff 0 11px,
            transparent 11px 22px
        );
    transform: skewX(-15deg) translateX(70px);
}

.masthead-inner {
    position: relative;
    z-index: 2;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    text-decoration: none;
}

.brand-logo {
    width: 86px;
    height: 86px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.28));
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: .04em;
}

.brand-tagline {
    margin-top: 12px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.header-search {
    display: flex;
    width: min(410px, 34vw);
    border: 1px solid rgba(255,255,255,.22);
}

.header-search input {
    min-width: 0;
    flex: 1;
    padding: 13px 15px;
    border: 0;
    background: rgba(255,255,255,.06);
    color: white;
    outline: none;
}

.header-search input::placeholder {
    color: #acbac6;
}

.header-search button {
    border: 0;
    background: var(--red-600);
    color: white;
    padding-inline: 20px;
    font-weight: 800;
    cursor: pointer;
}

.primary-nav {
    background: white;
    border-bottom: 1px solid #d5d9dc;
    box-shadow: 0 4px 16px rgba(2,7,12,.05);
}

.primary-nav-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 27px;
    overflow-x: auto;
    scrollbar-width: none;
}

.primary-nav-inner::-webkit-scrollbar {
    display: none;
}

.primary-nav-inner a {
    flex: 0 0 auto;
    position: relative;
    color: var(--navy-900);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.primary-nav-inner a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 0;
    height: 3px;
    background: var(--red-600);
    transition: width .18s ease;
}

.primary-nav-inner a:hover::after {
    width: 100%;
}

.home-nav {
    color: var(--red-600) !important;
}

.mobile-menu {
    display: none;
    background: white;
}

.news-ticker {
    background: var(--red-600);
    color: white;
}

.ticker-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
}

.ticker-inner strong {
    padding-right: 18px;
    border-right: 1px solid rgba(255,255,255,.45);
    letter-spacing: .08em;
}

.homepage {
    padding-top: 34px;
    padding-bottom: 80px;
}

.lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(310px, .78fr);
    gap: 24px;
}

.lead-story {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 5vw, 70px);
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(153,27,30,.5),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy-950),
            var(--navy-800)
        );
    color: white;
    border-top: 6px solid var(--red-600);
    box-shadow: var(--shadow);
}

.story-type,
.hero-label,
.rail-label,
.card-kicker,
.analysis-kicker,
.video-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.lead-story h1 {
    max-width: 900px;
    margin: 14px 0 18px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(44px, 5.6vw, 78px);
    line-height: .96;
    letter-spacing: -.035em;
}

.lead-story h1 a {
    color: white;
    text-decoration: none;
}

.lead-deck {
    max-width: 760px;
    margin: 0;
    color: #d6dde3;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 21px;
    line-height: 1.45;
}

.lead-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    color: #aebac4;
    font-size: 12px;
}

.editorial-rail {
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border-top: 6px solid var(--gold);
    box-shadow: 0 15px 38px rgba(2,7,12,.08);
}

.editorial-rail h2 {
    margin: 13px 0 16px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 34px;
    line-height: 1.06;
}

.editorial-rail p {
    color: var(--muted);
}

.rail-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

.rail-actions a {
    padding: 11px 13px;
    background: var(--navy-900);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rail-actions a:first-child {
    background: var(--red-600);
}

.launch-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background:
        linear-gradient(
            115deg,
            var(--navy-950),
            var(--navy-800)
        );
    box-shadow: var(--shadow);
    border-top: 6px solid var(--red-600);
}

.launch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 0 68%,
            rgba(255,255,255,.018) 68%
        );
    background-size: 52px 52px;
}

.launch-hero-copy {
    position: relative;
    z-index: 2;
    padding: clamp(38px, 6vw, 82px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.hero-label {
    margin-bottom: 17px;
}

.launch-hero h1 {
    margin: 0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(58px, 7.4vw, 104px);
    line-height: .79;
    letter-spacing: -.04em;
}

.launch-hero h1 span {
    color: var(--red-500);
}

.hero-deck {
    max-width: 650px;
    margin: 30px 0 0;
    color: #c6d0d8;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 20px;
    line-height: 1.48;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.button {
    padding: 12px 18px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.button-red {
    background: var(--red-600);
    color: white;
}

.button-outline {
    border: 1px solid rgba(255,255,255,.4);
    color: white;
}

.launch-hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background:
        radial-gradient(
            circle at 60% 40%,
            rgba(153,27,30,.4),
            transparent 36%
        );
}

.hero-watermark {
    position: absolute;
    right: -22px;
    bottom: -50px;
    color: rgba(255,255,255,.035);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 260px;
    font-weight: 900;
}

.capitol-dome {
    position: absolute;
    left: 50%;
    bottom: 60px;
    width: 360px;
    transform: translateX(-50%);
    opacity: .26;
}

.dome-top {
    width: 7px;
    height: 80px;
    margin: 0 auto;
    background: white;
}

.dome-top::before {
    content: "";
    display: block;
    width: 22px;
    height: 10px;
    margin-left: -8px;
    background: white;
}

.dome {
    width: 210px;
    height: 96px;
    margin: 0 auto;
    border-radius: 210px 210px 0 0;
    border: 9px solid white;
    border-bottom: 0;
}

.columns {
    height: 160px;
    display: flex;
    justify-content: center;
    gap: 28px;
    border-top: 8px solid white;
    border-bottom: 9px solid white;
}

.columns i {
    display: block;
    width: 12px;
    height: 100%;
    background: white;
}

.steps {
    height: 42px;
    border-top: 9px solid white;
    border-bottom: 9px solid white;
}

.coverage-promise {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 22px;
    background: white;
    border: 1px solid var(--line);
}

.promise-card {
    min-height: 180px;
    padding: 26px;
    border-right: 1px solid var(--line);
}

.promise-card:last-child {
    border-right: 0;
}

.promise-card > span {
    color: var(--red-600);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 13px;
    font-weight: 800;
}

.promise-card h2 {
    margin: 13px 0 8px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 25px;
}

.promise-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.homepage-section {
    margin-top: 62px;
}

.section-titlebar {
    margin-bottom: 24px;
    padding-bottom: 13px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 2px solid var(--navy-900);
}

.section-titlebar > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-titlebar h2 {
    margin: 0;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 27px;
    letter-spacing: .02em;
}

.section-titlebar > a {
    color: var(--red-600);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.red-rule,
.gold-rule {
    display: block;
    width: 5px;
    height: 30px;
    background: var(--red-600);
}

.gold-rule {
    background: var(--gold);
}

.latest-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.latest-card {
    min-height: 260px;
    padding: 27px;
    background: white;
}

.latest-card h3 {
    margin: 10px 0 12px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 25px;
    line-height: 1.08;
}

.latest-card h3 a {
    text-decoration: none;
}

.latest-card p {
    color: var(--muted);
    font-size: 14px;
}

.card-kicker {
    color: var(--red-600);
}

.card-meta {
    margin-top: 20px;
    display: flex;
    gap: 13px;
    color: #77828b;
    font-size: 11px;
}

.ready-panel {
    padding: 35px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-left: 6px solid var(--gold);
}

.ready-icon img {
    width: 82px;
}

.ready-panel h3 {
    margin: 0 0 8px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 28px;
}

.ready-panel p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
}

.analysis-section {
    padding: 36px;
    background: var(--navy-900);
}

.section-titlebar-dark {
    border-color: rgba(255,255,255,.18);
}

.section-titlebar-dark h2 {
    color: white;
}

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

.analysis-grid article {
    padding-top: 18px;
    border-top: 3px solid var(--red-600);
}

.analysis-grid h3 {
    margin: 9px 0 10px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 25px;
    line-height: 1.08;
}

.analysis-grid h3 a {
    color: white;
    text-decoration: none;
}

.analysis-grid p {
    color: #aebac4;
    font-size: 14px;
}

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

.video-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
}

.video-screen {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle,
            rgba(153,27,30,.38),
            transparent 44%
        ),
        var(--navy-900);
}

.play-button {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    border-radius: 50%;
    background: var(--red-600);
    color: white;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.video-card-copy {
    padding: 22px;
}

.video-label {
    color: var(--red-600);
}

.video-card h3 {
    margin: 8px 0 9px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
    line-height: 1.1;
}

.video-card h3 a {
    text-decoration: none;
}

.video-card p {
    color: var(--muted);
    font-size: 13px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
}

.section-tile {
    min-height: 155px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: white;
    color: var(--navy-900);
    text-decoration: none;
    transition:
        background .15s ease,
        color .15s ease;
}

.section-tile:hover {
    background: var(--navy-900);
    color: white;
}

.section-tile > span {
    margin-bottom: auto;
    color: var(--red-600);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 13px;
    font-weight: 900;
}

.section-tile strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 22px;
}

.section-tile small {
    margin-top: 7px;
    color: var(--muted);
}

.section-tile:hover small {
    color: #c8d1d8;
}

.topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.topic-list a {
    padding: 10px 14px;
    background: white;
    border: 1px solid var(--line);
    color: var(--navy-900);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.topic-list a:hover {
    border-color: var(--red-600);
    color: var(--red-600);
}

/* Existing listing/article/search/video presentation */

.listing-page,
.video-page,
.article-shell {
    padding-block: 52px 82px;
}

.listing-header {
    max-width: 900px;
    margin-bottom: 36px;
    padding-bottom: 23px;
    border-bottom: 4px solid var(--navy-900);
}

.listing-header h1 {
    margin: 8px 0 10px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(44px, 5vw, 70px);
    line-height: .95;
}

.listing-header p {
    color: var(--muted);
    font-size: 17px;
}

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

.story-card {
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    border-top: 4px solid var(--navy-900);
}

.story-card h3 {
    margin: 9px 0;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 23px;
    line-height: 1.12;
}

.story-card h3 a {
    text-decoration: none;
}

.story-kicker {
    color: var(--red-600);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
}

.story-card p,
.story-meta {
    color: var(--muted);
}

.story-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 11px;
}

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

.taxonomy-tile {
    min-height: 135px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: white;
    border: 1px solid var(--line);
    border-top: 4px solid var(--red-600);
    text-decoration: none;
}

.taxonomy-tile strong {
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 21px;
}

.taxonomy-tile span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.topic-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.topic-cloud a {
    padding: 9px 13px;
    background: white;
    border: 1px solid var(--line);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.article-page {
    max-width: 920px;
    margin: 0 auto;
}

.article-header {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    color: var(--red-600);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-header h1 {
    margin: 12px 0 18px;
    color: var(--navy-900);
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: .96;
    letter-spacing: -.035em;
}

.article-deck {
    color: #3d4c58;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 21px;
    line-height: 1.45;
}

.article-byline,
.article-taxonomy {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;
    color: var(--muted);
    font-size: 12px;
}

.article-taxonomy a {
    padding: 4px 8px;
    border: 1px solid var(--line);
    background: white;
    text-decoration: none;
}

.article-body {
    padding-block: 42px;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 19px;
    line-height: 1.82;
}

.article-support,
.source-panel,
.related-panel {
    margin-top: 34px;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
}

.search-page-form {
    padding: 25px;
    background: white;
    border: 1px solid var(--line);
}

.search-page-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.search-row {
    display: grid;
    grid-template-columns: 1fr 150px auto;
    gap: 9px;
}

.search-row input,
.search-row select {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #aeb7bd;
    background: white;
    font: inherit;
}

.search-row button {
    border: 0;
    background: var(--red-600);
    color: white;
    padding-inline: 22px;
    font-weight: 900;
}

.search-summary {
    margin-top: 22px;
}

.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    background: var(--navy-950);
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.external-video {
    color: white;
    text-align: center;
}

.button-link {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 16px;
    background: var(--red-600);
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.publication-empty {
    grid-column: 1 / -1;
    padding: 34px;
    background: white;
    border: 1px solid var(--line);
    border-left: 5px solid var(--gold);
}

/* Footer */

.site-footer {
    background: var(--navy-950);
    color: #aeb9c1;
}

.footer-accent {
    height: 6px;
    background:
        linear-gradient(
            90deg,
            var(--red-600) 0 34%,
            var(--gold) 34% 36%,
            var(--navy-700) 36%
        );
}

.footer-main {
    padding-block: 48px 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 46px;
}

.footer-identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    width: 62px;
}

.footer-name {
    color: white;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: .05em;
}

.footer-identity p {
    margin: 6px 0 0;
    color: #8997a2;
    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-column h2 {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a {
    color: #bcc6ce;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom {
    padding-block: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
    font-size: 11px;
}

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

@media (max-width: 1020px) {
    .header-search {
        display: none;
    }

    .launch-hero {
        grid-template-columns: 1.2fr .8fr;
    }

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

    .coverage-promise {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-card:nth-child(2) {
        border-right: 0;
    }

    .promise-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .latest-layout,
    .analysis-grid,
    .video-grid,
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-grid,
    .taxonomy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(calc(100% - 28px), var(--max));
    }

    .topline-left span:not(:first-child):not(.live-dot) {
        display: none;
    }

    .topline-links a:first-child {
        display: none;
    }

    .masthead-inner {
        min-height: 104px;
    }

    .brand-logo {
        width: 58px;
        height: 58px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-tagline {
        max-width: 220px;
        margin-top: 7px;
        font-size: 8px;
        line-height: 1.4;
    }

    .primary-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
        border-bottom: 1px solid var(--line);
    }

    .mobile-menu summary {
        padding: 12px 14px;
        display: flex;
        justify-content: space-between;
        font-weight: 900;
        cursor: pointer;
    }

    .mobile-menu-links {
        padding: 0 14px 14px;
        display: grid;
    }

    .mobile-menu-links a {
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
    }

    .news-ticker {
        display: none;
    }

    .homepage {
        padding-top: 18px;
    }

    .launch-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .launch-hero-copy {
        min-height: 500px;
        padding: 38px 25px;
    }

    .launch-hero h1 {
        font-size: clamp(54px, 18vw, 78px);
    }

    .launch-hero-visual {
        display: none;
    }

    .coverage-promise {
        grid-template-columns: 1fr;
    }

    .promise-card,
    .promise-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .lead-story {
        min-height: 450px;
        padding: 30px 24px;
    }

    .lead-story h1 {
        font-size: 42px;
    }

    .editorial-rail {
        padding: 28px 24px;
    }

    .latest-layout,
    .analysis-grid,
    .video-grid,
    .story-grid,
    .section-grid,
    .taxonomy-grid {
        grid-template-columns: 1fr;
    }

    .analysis-section {
        margin-inline: -14px;
        padding: 28px 20px;
    }

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

    .ready-panel {
        grid-template-columns: 1fr;
    }

    .ready-icon img {
        width: 64px;
    }

    .article-header h1 {
        font-size: 43px;
    }

    .article-deck {
        font-size: 18px;
    }

    .article-body {
        font-size: 18px;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .search-row button {
        min-height: 46px;
    }

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

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