:root {
    --ink: #0a0d12;
    --ink-2: #10151c;
    --panel: #151c24;
    --panel-2: #1b2530;
    --line: #2a3542;
    --line-soft: #202a35;
    --text: #f4f7fa;
    --muted: #a8b2bf;
    --dim: #778391;
    --orange: #ff6a1a;
    --orange-light: #ff9b5d;
    --cyan: #2bd1ed;
    --green: #4ee49a;
    --yellow: #ffd166;
    --max: 1440px;
    --content: 760px;
    --header: 72px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    min-width: 0;
    background: var(--ink);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

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

button,
input,
select {
    color: inherit;
    font: inherit;
    letter-spacing: 0;
}

button,
select {
    cursor: pointer;
}

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

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

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 4px;
    background: var(--text);
    color: var(--ink);
    transform: translateY(-150%);
}

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

.eyebrow {
    color: var(--orange-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(10, 13, 18, 0.94);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(calc(100% - 48px), var(--max));
    height: 100%;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: max-content;
}

.brand-lockup {
    width: 224px;
    height: auto;
    flex: 0 0 auto;
}

.brand-lockup--footer {
    width: 280px;
}

.desktop-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    display: grid;
    height: 100%;
    place-items: center;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    opacity: 0;
    transform: scaleX(0.25);
    transition: 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--text);
}

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

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.icon-button,
.share-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    color: var(--text);
}

.icon-button:hover,
.share-button:hover {
    border-color: var(--orange);
    background: rgba(255, 106, 26, 0.08);
}

.share-button {
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
}

.share-button--facebook {
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
}

.share-button--reddit {
    font-size: 0.74rem;
}

.share-button--email {
    font-size: 1.05rem;
}

.share-button:focus-visible {
    border-color: var(--cyan);
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.share-button[hidden] {
    display: none;
}

.search-icon {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
}

.menu-button {
    display: none;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
}

.mobile-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--ink-2);
}

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

.mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-weight: 750;
}

.mobile-nav a[aria-current="page"] {
    color: var(--orange-light);
}

.search-panel {
    position: fixed;
    z-index: 99;
    inset: var(--header) 0 0;
    overflow: auto;
    background: rgba(10, 13, 18, 0.98);
}

.search-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    width: min(calc(100% - 48px), 980px);
    margin: 64px auto 24px;
}

.search-inner label {
    color: var(--orange-light);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-inner input {
    width: 100%;
    padding: 18px 0;
    border: 0;
    border-bottom: 2px solid var(--line);
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.65rem;
    font-weight: 700;
}

.search-inner input:focus {
    border-color: var(--cyan);
}

.search-results {
    display: grid;
    gap: 1px;
    width: min(calc(100% - 48px), 980px);
    margin: 0 auto 80px;
    background: var(--line-soft);
}

.search-result {
    display: grid;
    grid-template-columns: 104px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 12px;
    background: var(--ink-2);
}

.search-result img {
    width: 104px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.search-result strong {
    display: block;
    margin-bottom: 3px;
}

.search-result span {
    color: var(--muted);
    font-size: 0.8rem;
}

.lead-story {
    position: relative;
    display: flex;
    min-height: min(68vh, 690px);
    align-items: flex-end;
    overflow: hidden;
    background: var(--panel);
}

.lead-story__image,
.article-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lead-story__shade,
.article-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 10, 14, 0.98) 0%, rgba(7, 10, 14, 0.78) 40%, rgba(7, 10, 14, 0.18) 74%), linear-gradient(0deg, rgba(7, 10, 14, 0.96) 0%, transparent 48%);
}

.lead-story__content {
    position: relative;
    z-index: 1;
    padding-block: clamp(64px, 8vw, 112px);
}

.lead-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead-kicker span:last-child {
    padding-left: 9px;
    border-left: 1px solid var(--line);
    color: var(--orange-light);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(78, 228, 154, 0.1);
}

.lead-story h1,
.article-hero h1,
.page-intro h1,
.error-page h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(2.5rem, 5.3vw, 5.3rem);
    font-weight: 900;
    line-height: 0.98;
    text-wrap: balance;
}

.lead-story__content > p {
    max-width: 690px;
    margin: 24px 0 30px;
    color: #d2d9e1;
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.lead-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lead-actions > span {
    color: var(--muted);
    font-size: 0.82rem;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 0.84rem;
    font-weight: 850;
}

.button--primary {
    border-color: var(--orange);
    background: var(--orange);
    color: #120a05;
}

.button--primary:hover {
    border-color: var(--orange-light);
    background: var(--orange-light);
}

.signal-strip {
    border-block: 1px solid var(--line-soft);
    background: #0d1218;
}

.signal-strip__inner {
    display: grid;
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
}

.signal-strip__events,
.signal-strip__clocks {
    display: flex;
    min-width: 0;
    align-items: stretch;
}

.signal-strip__events {
    overflow: hidden;
}

.signal-strip__events > strong {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    padding-right: 26px;
    color: var(--orange-light);
    font-size: 0.66rem;
    letter-spacing: 0.09em;
}

.signal-strip__event {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    overflow: hidden;
    padding-inline: 22px;
    border-left: 1px solid var(--line-soft);
    color: #d7dde4;
    font-size: 0.78rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.signal-strip__event span {
    flex: 0 0 auto;
    margin-right: 8px;
    color: var(--dim);
    font-size: 0.65rem;
    font-weight: 850;
}

.countdown-clock__label {
    color: var(--dim);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.countdown-clock {
    display: flex;
    min-width: 210px;
    align-items: center;
    padding: 10px 20px;
    border-left: 1px solid var(--line-soft);
}

.countdown-clock__body {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.countdown-clock__value {
    overflow: hidden;
    color: var(--text);
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.countdown-clock small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.58rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.countdown-clock--competitive {
    box-shadow: inset 2px 0 0 rgba(31, 217, 255, 0.7);
}

.countdown-clock--store {
    box-shadow: inset 2px 0 0 rgba(255, 123, 32, 0.75);
}

.countdown-clock--drive {
    box-shadow: inset 2px 0 0 rgba(151, 111, 255, 0.82);
}

.countdown-clock--drive.is-active .countdown-clock__value {
    color: #bca9ff;
}

.countdown-clock.is-complete .countdown-clock__value {
    color: var(--green);
}

.rail-title i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.coverage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    padding-block: 72px 110px;
}

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

.section-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(1.7rem, 2.3vw, 2.25rem);
    line-height: 1.08;
}

.feed-controls {
    display: flex;
    gap: 8px;
}

.filter-field input,
.feed-controls select {
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 4px;
    outline: 0;
    background: var(--ink-2);
    color: var(--text);
    font-size: 0.8rem;
}

.filter-field input {
    width: 180px;
    padding: 0 12px;
}

.feed-controls select {
    min-width: 132px;
    padding: 0 34px 0 12px;
}

.filter-field input:focus,
.feed-controls select:focus {
    border-color: var(--cyan);
}

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

.story-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: var(--ink-2);
    transition: transform 180ms ease, border-color 180ms ease;
}

.story-card:hover {
    border-color: #475463;
    transform: translateY(-3px);
}

.story-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: minmax(280px, 0.85fr) 1fr;
}

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

.story-card--wide .story-image {
    aspect-ratio: auto;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.story-card:hover .story-image img {
    transform: scale(1.025);
}

.story-body {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 22px;
}

.story-meta,
.story-footer,
.byline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dim);
    font-size: 0.7rem;
    font-weight: 750;
}

.story-meta span {
    color: var(--orange-light);
    font-weight: 850;
    text-transform: uppercase;
}

.story-body h3 {
    margin: 13px 0 10px;
    font-size: clamp(1.25rem, 1.7vw, 1.65rem);
    line-height: 1.13;
    text-wrap: balance;
}

.story-body h3 a:hover {
    color: var(--orange-light);
}

.story-body > p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 0.92rem;
}

.story-footer {
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
}

.story-footer a {
    color: var(--text);
    font-weight: 800;
}

.story-footer a:hover {
    color: var(--cyan);
}

.pagination {
    display: grid;
    min-height: 58px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.pagination__direction {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
}

.pagination__direction:last-child {
    justify-self: end;
}

.pagination__direction:hover {
    color: var(--cyan);
}

.pagination__status {
    color: var(--dim);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.intel-rail {
    display: grid;
    align-content: start;
    gap: 18px;
}

.rail-section {
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: var(--ink-2);
}

.rail-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.intel-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-soft);
}

.intel-item:last-child {
    border-bottom: 0;
}

.intel-item time {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 900;
}

.intel-item div {
    display: grid;
    gap: 2px;
}

.intel-item strong {
    font-size: 0.86rem;
}

.intel-item span {
    color: var(--muted);
    font-size: 0.76rem;
}

.page-intro {
    padding-block: 84px 44px;
    border-bottom: 1px solid var(--line-soft);
}

.page-intro h1 {
    margin-top: 10px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-intro p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.empty-state {
    padding: 48px 24px;
    border: 1px dashed var(--line);
    color: var(--muted);
    text-align: center;
}

.article-hero {
    position: relative;
    display: flex;
    min-height: min(70vh, 720px);
    align-items: flex-end;
    overflow: hidden;
}

.article-hero__content {
    position: relative;
    z-index: 1;
    padding-block: 90px 72px;
}

.breadcrumb {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--orange-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 1060px;
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.article-hero__content > p {
    max-width: 780px;
    margin: 22px 0 28px;
    color: #d2dae2;
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.byline {
    flex-wrap: wrap;
}

.byline > * + *::before {
    margin-right: 12px;
    color: var(--line);
    content: "/";
}

.archive-label {
    color: var(--orange-light);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.image-credit {
    padding-block: 10px;
    color: var(--dim);
    font-size: 0.68rem;
    text-align: right;
}

.article-layout {
    display: grid;
    grid-template-columns: 60px minmax(0, var(--content)) minmax(220px, 1fr);
    gap: 40px;
    padding-block: 64px 110px;
}

.share-rail {
    position: sticky;
    top: calc(var(--header) + 24px);
    display: grid;
    height: max-content;
    justify-items: center;
    gap: 9px;
}

.share-rail > span {
    margin-bottom: 3px;
    color: var(--dim);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
}

.article-copy {
    min-width: 0;
}

.article-section {
    margin-bottom: 42px;
}

.article-section h2,
.quick-facts h2 {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    line-height: 1.15;
    text-wrap: balance;
}

.article-section p,
.article-section li {
    color: #c5ced8;
    font-size: 1.04rem;
    line-height: 1.78;
}

.article-section p {
    margin: 0 0 19px;
}

.article-section ul {
    display: grid;
    gap: 11px;
    margin: 20px 0;
    padding-left: 22px;
}

.article-section li::marker {
    color: var(--orange);
}

.article-section figure {
    margin: 34px 0;
}

.article-section figure img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.article-section figcaption {
    margin-top: 9px;
    color: var(--dim);
    font-size: 0.68rem;
}

.article-faq {
    margin-top: 54px;
}

.article-faq__list {
    border-bottom: 1px solid var(--line-soft);
}

.article-faq__item {
    padding: 22px 0 20px;
    border-top: 1px solid var(--line-soft);
}

.article-faq__item h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.35;
}

.article-faq__item p:last-child {
    margin-bottom: 0;
}

.quick-facts {
    margin-bottom: 48px;
    padding: 24px;
    border-top: 3px solid var(--orange);
    background: var(--ink-2);
}

.quick-facts h2 {
    font-size: 1rem;
}

.quick-facts dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    background: var(--line-soft);
}

.quick-facts dl div {
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--ink-2);
}

.quick-facts dt {
    color: var(--dim);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quick-facts dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.article-aside {
    align-self: start;
}

.article-index {
    position: sticky;
    top: calc(var(--header) + 24px);
    max-width: 270px;
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    background: var(--ink-2);
}

.article-index > span {
    color: var(--dim);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.07em;
}

.article-index > strong {
    display: block;
    margin: 6px 0 16px;
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 1.5rem;
}

.article-index dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.article-index dl div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--line-soft);
    font-size: 0.72rem;
}

.article-index dt {
    color: var(--dim);
}

.article-index dd {
    margin: 0;
    font-weight: 750;
}

.tag-list {
    display: flex;
    max-width: 270px;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.tag-list span {
    padding: 5px 8px;
    border: 1px solid var(--line-soft);
    border-radius: 3px;
    color: var(--muted);
    font-size: 0.65rem;
}

.related {
    padding-bottom: 110px;
}

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

.site-footer {
    border-top: 1px solid var(--line);
    background: #080b0f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
    padding-block: 66px;
}

.brand--footer {
    margin-bottom: 18px;
}

.footer-grid > div:first-child p {
    max-width: 430px;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-grid > div:not(:first-child) {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-grid > div:not(:first-child) strong {
    margin-bottom: 4px;
    color: var(--dim);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-grid a:hover {
    color: var(--orange-light);
}

.legal-row {
    display: flex;
    width: min(calc(100% - 48px), var(--max));
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-inline: auto;
    padding-block: 18px 26px;
    border-top: 1px solid var(--line-soft);
    color: var(--dim);
    font-size: 0.64rem;
}

.toast {
    position: fixed;
    z-index: 200;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    max-width: min(360px, calc(100% - 36px));
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
    border-radius: 4px;
    background: var(--panel-2);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
    font-size: 0.82rem;
}

.error-page {
    min-height: 68vh;
    padding-block: 110px;
}

.error-code {
    color: var(--orange);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.85rem;
}

.error-page h1 {
    margin: 10px 0 20px;
}

.error-page p {
    margin: 0 0 28px;
    color: var(--muted);
}

@media (max-width: 1120px) {
    .coverage-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 32px;
    }

    .article-layout {
        grid-template-columns: 54px minmax(0, 1fr) 220px;
        gap: 28px;
    }
}

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

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-button {
        display: inline-grid;
    }

    .lead-story {
        min-height: 630px;
    }

    .lead-story__shade,
    .article-hero__shade {
        background: linear-gradient(0deg, rgba(7, 10, 14, 0.98) 0%, rgba(7, 10, 14, 0.72) 58%, rgba(7, 10, 14, 0.15) 100%);
    }

    .signal-strip {
        overflow: hidden;
    }

    .signal-strip__inner {
        width: 100%;
        grid-template-columns: 1fr;
        padding-inline: 24px;
    }

    .signal-strip__events {
        min-height: 50px;
        overflow-x: auto;
        border-bottom: 1px solid var(--line-soft);
    }

    .signal-strip__event {
        flex: 0 0 auto;
    }

    .signal-strip__clocks {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .countdown-clock {
        min-width: 0;
        padding: 12px 18px;
    }

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

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

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

    .share-rail {
        position: static;
        display: flex;
        order: 0;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .share-rail > span {
        margin: 0 5px 0 0;
        writing-mode: initial;
    }

    .article-copy {
        order: 1;
    }

    .article-aside {
        grid-row: auto;
        order: 2;
    }

    .article-index {
        position: static;
        max-width: none;
    }

    .tag-list {
        max-width: none;
    }

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

@media (max-width: 660px) {
    :root {
        --header: 64px;
    }

    .shell,
    .header-inner,
    .footer-grid,
    .legal-row {
        width: min(calc(100% - 32px), var(--max));
    }

    .brand-lockup {
        width: 176px;
    }

    .icon-button,
    .share-button {
        width: 40px;
        height: 40px;
    }

    .search-inner {
        grid-template-columns: 1fr auto;
        width: calc(100% - 32px);
        margin-top: 32px;
    }

    .search-inner label {
        grid-column: 1 / -1;
    }

    .search-inner input {
        font-size: 1.2rem;
    }

    .search-results {
        width: calc(100% - 32px);
    }

    .search-result {
        grid-template-columns: 84px 1fr;
    }

    .search-result > span:last-child {
        display: none;
    }

    .lead-story {
        min-height: calc(100svh - var(--header));
        max-height: 740px;
    }

    .lead-story__image,
    .article-hero > img {
        object-position: 62% center;
    }

    .lead-story__content {
        padding-block: 72px 46px;
    }

    .lead-story h1,
    .article-hero h1,
    .page-intro h1,
    .error-page h1 {
        font-size: clamp(2.35rem, 13vw, 4.2rem);
        line-height: 1;
    }

    .lead-story__content > p {
        margin-block: 18px 24px;
        font-size: 1rem;
    }

    .lead-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .lead-actions .button {
        align-self: flex-start;
    }

    .signal-strip__inner {
        min-height: 0;
        padding-inline: 16px;
    }

    .signal-strip__events {
        min-height: 48px;
    }

    .signal-strip__events > strong {
        padding-right: 18px;
    }

    .signal-strip__event {
        padding-inline: 18px;
    }

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

    .countdown-clock--drive {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line-soft);
    }

    .countdown-clock {
        min-height: 72px;
        padding: 11px 12px;
    }

    .countdown-clock__value {
        font-size: clamp(0.78rem, 3.4vw, 1rem);
    }

    .countdown-clock small {
        display: none;
    }

    .coverage-layout {
        padding-block: 50px 80px;
    }

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

    .feed-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .filter-field input,
    .feed-controls select {
        width: 100%;
    }

    .story-grid,
    .story-grid--related {
        grid-template-columns: 1fr;
    }

    .story-card--wide {
        grid-template-columns: 1fr;
    }

    .story-card--wide .story-image {
        aspect-ratio: 16 / 9;
    }

    .story-body {
        min-height: 230px;
        padding: 19px;
    }

    .intel-rail {
        grid-template-columns: 1fr;
    }

    .page-intro {
        padding-block: 62px 32px;
    }

    .article-hero {
        min-height: 660px;
    }

    .article-hero__content {
        padding-block: 80px 44px;
    }

    .article-hero__content > p {
        margin-block: 18px 22px;
        font-size: 1rem;
    }

    .byline {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .byline > * + *::before {
        display: none;
    }

    .image-credit {
        text-align: left;
    }

    .article-layout {
        gap: 26px;
        padding-block: 38px 80px;
    }

    .quick-facts {
        padding: 18px;
    }

    .quick-facts dl {
        grid-template-columns: 1fr;
    }

    .article-section p,
    .article-section li {
        font-size: 1rem;
    }

    .related {
        padding-bottom: 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 30px;
        padding-block: 48px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .legal-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
