/* Planck Standard: site styles.
   One stylesheet, system fonts only (no web-font downloads), light and dark themes. */

:root {
  --bg: #ffffff;
  --bg-2: #f4f4f1;
  --bg-3: #e9e9e4;
  --ink: #0d0d0f;
  --ink-2: #34343a;
  --ink-3: #6a6a72;
  --rule: #e3e3de;
  --rule-strong: #0d0d0f;
  --brand: #d7141a;
  --brand-text: #d7141a;
  --hover: #b3000c;
  --physics: #5b3df5;
  --science: #0b7a6a;
  --space: #0a0b16;
  --space-ink: #eef0ff;
  --space-ink-2: #a9aecb;
  --space-ink-3: #8b90b0;
  --space-rule: rgba(255, 255, 255, .13);
  --space-accent: #b0a4ff;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  --wrap: 1260px;
  --gutter: 16px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #0c0c0e;
  --bg-2: #161619;
  --bg-3: #1f1f23;
  --ink: #f2f2f0;
  --ink-2: #c9c9cf;
  --ink-3: #8e8e97;
  --rule: #27272c;
  --rule-strong: #f2f2f0;
  --brand-text: #ff5a5f;
  --hover: #ff7a7e;
  --physics: #a898ff;
  --science: #4fd1b8;
  --space: #07080f;
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0c0c0e;
    --bg-2: #161619;
    --bg-3: #1f1f23;
    --ink: #f2f2f0;
    --ink-2: #c9c9cf;
    --ink-3: #8e8e97;
    --rule: #27272c;
    --rule-strong: #f2f2f0;
    --brand-text: #ff5a5f;
    --hover: #ff7a7e;
    --physics: #a898ff;
    --science: #4fd1b8;
    --space: #07080f;
    color-scheme: dark;
  }
}

@media (min-width: 720px) {
  :root { --gutter: 24px; }
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.5 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--brand-text); outline-offset: 2px; border-radius: 2px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: var(--bg); padding: 8px 14px; font-weight: 700; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Masthead ---------- */

.mast { background: var(--bg); border-bottom: 1px solid var(--rule); }
.mast-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "brand tools" "nav nav";
  align-items: center;
  column-gap: 16px;
}
.brand { grid-area: brand; display: inline-flex; align-items: center; gap: 10px; padding: 12px 0; min-width: 0; }
.mark { width: 30px; height: 30px; flex: none; }
.brand-word {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.brand-word b { font-weight: 900; letter-spacing: .03em; }
.nav {
  grid-area: nav;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter);
  border-top: 1px solid var(--rule);
  -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
  mask-image: linear-gradient(90deg, #000 88%, transparent);
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  flex: none;
  padding: 11px 10px 9px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-2);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav a:first-child { padding-left: 0; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--brand); }
.nav-physics::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--physics);
  vertical-align: 1px;
}
.tools { grid-area: tools; display: flex; gap: 2px; }
.tool {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--ink-2);
  cursor: pointer;
}
.tool:hover { background: var(--bg-2); color: var(--ink); }
.tool svg { width: 20px; height: 20px; }
.i-sun { display: none; }
:root[data-theme="dark"] .i-sun { display: block; }
:root[data-theme="dark"] .i-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .i-sun { display: block; }
  :root:not([data-theme="light"]) .i-moon { display: none; }
}

@media (min-width: 720px) {
  .brand-word { font-size: 20px; }
  .mark { width: 32px; height: 32px; }
}

@media (min-width: 1180px) {
  .mast-row { grid-template-columns: auto minmax(0, 1fr) auto; grid-template-areas: "brand nav tools"; column-gap: 28px; }
  .nav { border-top: 0; margin: 0; padding: 0; -webkit-mask-image: none; mask-image: none; justify-content: center; }
  .nav a { padding: 23px 9px 20px; }
  .nav a:first-child { padding-left: 9px; }
}

/* ---------- Breaking alert ---------- */

.alert { background: var(--brand); color: #fff; }
.alert-link { display: flex; align-items: center; gap: 12px; min-height: 46px; padding: 9px 0; font-size: 15px; font-weight: 700; }
.alert-tag {
  flex: none;
  padding: 3px 8px;
  border-radius: 2px;
  background: #fff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.alert-hl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.alert-link:hover .alert-hl { text-decoration: underline; }

/* ---------- Chips ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chips-dark .chip { background: rgba(255, 255, 255, .04); border-color: var(--space-rule); color: var(--space-ink-2); }
.chips-dark .chip:hover { border-color: var(--space-accent); color: #fff; }

.trending { display: flex; align-items: center; gap: 12px; padding-top: 14px; }
.trending-label { flex: none; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--brand-text); }
.trending .chips {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
  mask-image: linear-gradient(90deg, #000 92%, transparent);
}
.trending .chips::-webkit-scrollbar { display: none; }
.trending .chip { padding: 3px 11px; font-size: 12.5px; }

/* ---------- Story cards ---------- */

.story { position: relative; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.story-text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.story .hl a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.story:hover .hl a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .14em; }

.kicker {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--brand-text);
}
.k-physics { color: var(--physics); }
.k-science { color: var(--science); }

.hl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: -.011em;
  text-wrap: pretty;
}
.dek {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.meta { font-size: 12.5px; font-weight: 500; color: var(--ink-3); }

.media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-2);
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.story:hover .media img { transform: scale(1.025); }
.media-empty, .media-broken {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M12.9 5.5V26M12.9 18.3c0-3.3 2.3-5.6 5.3-5.6s5 2.1 5 5.6V26M8.4 11.6l8.8-3.1' fill='none' stroke='rgba(255,255,255,.22)' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 34% no-repeat,
    radial-gradient(circle at 80% 10%, rgba(215, 20, 26, .45), transparent 60%),
    linear-gradient(135deg, #171933, #0a0b16);
}
.media img.is-broken { visibility: hidden; }
.badge-play {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px 4px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .74);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.badge-play svg { width: 14px; height: 14px; }

.story-xl .hl { font-size: clamp(27px, 3.2vw, 42px); font-weight: 820; line-height: 1.08; letter-spacing: -.024em; -webkit-line-clamp: 5; }
.story-xl .dek { font-size: 17px; -webkit-line-clamp: 4; }
.story-xl .story-text { gap: 9px; }
.story-l .hl { font-size: clamp(22px, 2.2vw, 27px); font-weight: 800; line-height: 1.13; letter-spacing: -.02em; }
.story-m .hl { font-size: 18px; }
.story-s .hl { font-size: 16px; line-height: 1.28; }
.story-feature .hl { font-size: clamp(24px, 2.5vw, 32px); font-weight: 820; line-height: 1.1; letter-spacing: -.022em; }
.story-feature .dek { font-size: 16.5px; }

/* Row: text beside a thumbnail. Used by listing pages and section blocks. */
.story-row { flex-direction: row; align-items: flex-start; gap: 18px; padding: 18px 0; border-top: 1px solid var(--rule); }
.story-row .media { flex: none; width: 32%; max-width: 250px; }
.story-row .story-text { flex: 1; }
.story-row .hl { font-size: 19px; -webkit-line-clamp: 3; }

/* Compact rows on small screens and in narrow rails. */
.art-aside .story-s { flex-direction: row-reverse; align-items: flex-start; gap: 14px; padding: 14px 0; border-top: 1px solid var(--rule); }
.art-aside .story-s .media { flex: none; width: 92px; aspect-ratio: 1; }
.art-aside .story-s .hl { font-size: 15px; -webkit-line-clamp: 4; }

@media (max-width: 599px) {
  .story-row { flex-direction: row-reverse; gap: 14px; padding: 16px 0; }
  .story-row .media, .lead-side .story .media, .grid-4 .story .media, .grid-3 .story .media, .desk-cards .story .media {
    flex: none;
    width: 104px;
    aspect-ratio: 1;
  }
  .story-row .hl { font-size: 16.5px; }
  .story-row .dek { display: none; }
  .lead-side .story, .grid-4 .story, .grid-3 .story, .desk-cards .story {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }
  .desk-cards .story { border-color: var(--space-rule); }
  .lead-side .story .hl, .grid-4 .story .hl, .grid-3 .story .hl, .desk-cards .story .hl { font-size: 16.5px; }
}

/* ---------- Headline lists and the "Latest" wire ---------- */

.hl-list li { padding: 11px 0; border-top: 1px solid var(--rule); font-size: 15.5px; font-weight: 650; line-height: 1.35; }
.hl-list li:first-child { border-top: 0; padding-top: 0; }
.hl-list a:hover { text-decoration: underline; }

.rail-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--rule-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.pulse { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(215, 20, 26, .55); }
  70% { box-shadow: 0 0 0 8px rgba(215, 20, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 20, 26, 0); }
}
.wire li { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--rule); }
.wire time { padding-top: 2px; font-size: 12px; font-weight: 700; color: var(--brand-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.wire a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 14.5px;
  font-weight: 620;
  line-height: 1.36;
}
.wire a:hover { text-decoration: underline; }
.more { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 750; white-space: nowrap; }
.more:hover { color: var(--hover); }

/* ---------- Homepage lead package ---------- */

.lead { display: grid; gap: 28px; padding-top: 20px; padding-bottom: 32px; grid-template-areas: "main" "side" "wire"; }
.lead-main { grid-area: main; min-width: 0; }
.lead-side { grid-area: side; display: grid; gap: 22px; align-content: start; min-width: 0; }
.lead-wire { grid-area: wire; min-width: 0; }
.also { margin-top: 16px; border-top: 1px solid var(--rule); }
.also li { position: relative; padding: 11px 0 11px 18px; border-bottom: 1px solid var(--rule); font-size: 15.5px; font-weight: 650; line-height: 1.35; }
.also li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.also a:hover { text-decoration: underline; }

@media (max-width: 719px) {
  .home .lead-main .media, .lead-section .lead-main .media { margin: 0 calc(var(--gutter) * -1); border-radius: 0; }
  .lead { padding-top: 14px; }
}
@media (min-width: 600px) and (max-width: 1099px) {
  .lead-side { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .lead { grid-template-columns: 264px minmax(0, 1fr) 300px; grid-template-areas: "wire main side"; column-gap: 32px; }
  .lead-wire { padding-right: 24px; border-right: 1px solid var(--rule); }
  .lead-side .story + .story { padding-top: 20px; border-top: 1px solid var(--rule); }
  .lead-section { grid-template-columns: minmax(0, 1fr) 340px; grid-template-areas: "main side"; }
}

/* ---------- Bands, grids, section blocks ---------- */

.band { padding-bottom: 36px; }
.band-title {
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 3px solid var(--rule-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.grid-4, .grid-3 { display: grid; gap: 26px 22px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 600px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 960px) {
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.sec { padding-bottom: 40px; }
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 3px solid var(--rule-strong);
}
.sec-head h2 { font-size: 24px; font-weight: 850; letter-spacing: -.02em; }
.sec-head h2 a:hover { color: var(--hover); }
.sec-head .more { margin: 0; }
.sec-grid { display: grid; gap: 26px; }
.sec-rows .story-row:first-child { border-top: 0; padding-top: 0; }
.sec-rows .story-row .media { width: 36%; }
.sec-rows .story-row .hl { font-size: 17px; }
.sec-more { align-self: start; }
@media (min-width: 900px) {
  .sec-wide .sec-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); column-gap: 32px; }
  .sec-wide .sec-more { grid-column: 1 / -1; }
}
@media (min-width: 1180px) {
  .sec-wide .sec-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 250px; }
  .sec-wide .sec-more { grid-column: auto; padding-left: 24px; border-left: 1px solid var(--rule); }
}
.sec-half .story-m { margin-bottom: 18px; }
.sec-half .story-m .hl { font-size: 21px; font-weight: 800; line-height: 1.16; letter-spacing: -.018em; }
.duo { display: grid; column-gap: 40px; }
@media (min-width: 900px) {
  .duo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- The physics desk ---------- */

.desk, .page-head-desk {
  background-color: var(--space);
  background-image:
    radial-gradient(rgba(255, 255, 255, .075) 1px, transparent 1.3px),
    radial-gradient(900px 380px at 88% -12%, rgba(91, 61, 245, .42), transparent 66%),
    radial-gradient(760px 320px at -6% 112%, rgba(0, 170, 255, .17), transparent 62%);
  background-size: 22px 22px, auto, auto;
  color: var(--space-ink);
}
.desk { margin: 4px 0 40px; padding: 36px 0 34px; }
.desk-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 24px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--space-rule);
}
.desk-head h2 { font-size: clamp(32px, 4.4vw, 48px); font-weight: 850; letter-spacing: -.035em; line-height: 1; }
.desk-head h2 a { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.desk-head .hbar { width: .9em; height: .9em; color: var(--space-accent); }
.desk-head p { grid-column: 1; font-size: 16px; color: var(--space-ink-2); }
.desk-head .more { grid-column: 2; grid-row: 1 / span 2; margin: 0; color: #fff; }
.desk .hl, .desk .hl a { color: #fff; }
.desk .dek { color: var(--space-ink-2); }
.desk .meta { color: var(--space-ink-3); }
.desk .media { background: #15172b; }
.desk-grid { display: grid; gap: 30px; }
.desk-cards { display: grid; gap: 26px 22px; grid-template-columns: minmax(0, 1fr); align-content: start; }
@media (min-width: 600px) {
  .desk-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .desk-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; }
}
.desk-topics { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--space-rule); }
@media (max-width: 599px) {
  .desk-head { grid-template-columns: 1fr; }
  .desk-head .more { grid-column: 1; grid-row: auto; }
}

/* ---------- Watch ---------- */

.watch { margin: 0 0 40px; padding: 4px 0 36px; background: var(--bg-2); }
.watch .band-title { border-top-color: transparent; padding-top: 22px; }

/* ---------- Listing pages ---------- */

.page-head { margin-bottom: 26px; padding: 30px 0 26px; border-bottom: 1px solid var(--rule); }
.page-head-desk { border-bottom: 0; padding: 44px 0 36px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-text);
}
.eyebrow .hbar { width: 18px; height: 18px; }
.page-head-desk .eyebrow { color: var(--space-accent); }
.page-head h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: 850; line-height: 1.02; letter-spacing: -.035em; }
.page-head-desk h1 { color: #fff; }
.page-num { font-size: .42em; font-weight: 700; letter-spacing: 0; color: var(--ink-3); vertical-align: middle; }
.page-desc { max-width: 760px; margin-top: 12px; font-size: 17.5px; line-height: 1.5; color: var(--ink-2); }
.page-head-desk .page-desc { color: var(--space-ink-2); }
.page-head .chips { margin-top: 20px; }

.listing { padding-bottom: 44px; }
.listing .grid-3 { padding-bottom: 36px; }
.river .story-row:first-child { border-top: 0; }
.river li + li .story-row { border-top: 1px solid var(--rule); }
.day-sep h2 { padding: 22px 0 6px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); border-bottom: 3px solid var(--rule-strong); }
.day-sep + li .story-row { border-top: 0; }
.listing-note { padding: 20px 0; color: var(--ink-3); }
.listing-note a { text-decoration: underline; }

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 700;
}
.pager-nums { display: flex; gap: 4px; }
.pager-nums a, .pager-nums span { display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 8px; border-radius: 999px; }
.pager-nums a:hover { background: var(--bg-2); }
.pager-nums [aria-current] { background: var(--ink); color: var(--bg); }
.pager-step:hover { color: var(--hover); }
.pager-step.is-off { color: var(--ink-3); opacity: .5; }
@media (max-width: 599px) {
  .pager-nums { display: none; }
}

/* ---------- Article ---------- */

.art-layout { display: grid; gap: 44px; padding-top: 22px; padding-bottom: 32px; grid-template-areas: "art" "more" "aside"; }
.art { grid-area: art; min-width: 0; max-width: 760px; }
.art-aside { grid-area: aside; display: grid; gap: 34px; align-content: start; min-width: 0; }
.art-more { grid-area: more; min-width: 0; }
@media (min-width: 1100px) {
  .art-layout { grid-template-columns: minmax(0, 1fr) 320px; grid-template-areas: "art aside" "more more"; column-gap: 60px; }
}
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; font-size: 13px; font-weight: 600; color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.art-head .kicker { display: inline-block; margin-bottom: 12px; }
.art-h1 { font-weight: 850; line-height: 1.08; letter-spacing: -.026em; text-wrap: balance; }
.art-h1.sz-xl { font-size: clamp(32px, 4.8vw, 54px); }
.art-h1.sz-l { font-size: clamp(28px, 3.7vw, 43px); line-height: 1.1; }
.art-h1.sz-m { font-size: clamp(24px, 3vw, 35px); line-height: 1.14; letter-spacing: -.02em; }
.art-h1.sz-s { font-size: clamp(21px, 2.4vw, 29px); line-height: 1.2; letter-spacing: -.014em; }
.art-deck { margin-top: 14px; font-size: clamp(17px, 1.7vw, 19px); font-weight: 650; line-height: 1.4; color: var(--ink-2); }
.art-dek { margin-top: 16px; font-size: clamp(18px, 1.9vw, 21px); line-height: 1.45; color: var(--ink-2); }
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
}
.byline a { font-weight: 750; }
.byline a:hover { text-decoration: underline; }
.byline-meta { color: var(--ink-3); }
.share { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.share-btn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 13px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.share-btn:hover { border-color: var(--ink); color: var(--ink); }
.share-native { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.share-native:hover { color: var(--bg); }
.art-media { margin: 26px 0 0; }
.art-media figcaption { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); }
.media-hero { border-radius: 4px; }
@media (max-width: 719px) {
  .art-media .media, .art-media .yt { margin: 0 calc(var(--gutter) * -1); border-radius: 0; }
}
.yt { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 4px; background: #000; cursor: pointer; }
.yt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px 13px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}
.yt-play svg { width: 22px; height: 22px; }
.yt:hover .yt-play { transform: translate(-50%, -50%) scale(1.05); }
.art-body { margin-top: 28px; font-family: var(--serif); font-size: 19px; line-height: 1.7; color: var(--ink); }
.art-body p + p { margin-top: 1.1em; }
.art-body a { text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 720px) {
  .art-body { font-size: 20px; }
}
.inline-rel {
  margin: 1.5em 0;
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--brand);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.35;
}
.inline-rel span { display: block; margin-bottom: 4px; font-size: 11.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--brand-text); }
.inline-rel a { font-weight: 750; text-decoration: none; }
.inline-rel a:hover { text-decoration: underline; }
.source-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 4px;
  background: var(--bg-2);
  font-size: 15px;
}
.source-box a { display: inline-flex; align-items: center; gap: 6px; font-weight: 750; }
.source-box a svg { width: 16px; height: 16px; }
.source-box a:hover { text-decoration: underline; }
.art-topics { margin-top: 30px; }
.art-topics h2 { margin-bottom: 10px; font-size: 12.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); }
.art-aside .story-s:first-of-type { border-top: 0; }

/* ---------- About, 404 ---------- */

.prose-page { max-width: 780px; padding-top: 38px; padding-bottom: 60px; }
.prose-page h1 { margin-bottom: 16px; font-size: clamp(36px, 5vw, 54px); font-weight: 850; line-height: 1.04; letter-spacing: -.032em; }
.prose-page h2:not(.band-title) { margin: 34px 0 10px; font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.prose-page p { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.prose-page p + p { margin-top: 12px; }
.prose-page p a { text-decoration: underline; text-underline-offset: 3px; }
.prose-page .lede { font-size: 21px; color: var(--ink); }
.prose-page .band-title { margin-top: 40px; }
.about-counts li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--rule); font-size: 17px; }
.about-counts a { font-weight: 700; }
.about-counts a:hover { text-decoration: underline; }
.about-counts span { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.button {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 750;
  cursor: pointer;
}

/* ---------- Search ---------- */

.search {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 12px 12px;
  background: rgba(8, 8, 12, .6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.search[hidden] { display: none; }
.search-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 680px;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}
.search-bar { display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 18px; border-bottom: 1px solid var(--rule); }
.search-bar > svg { flex: none; width: 20px; height: 20px; color: var(--ink-3); }
.search-input {
  flex: 1;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  outline: none;
  background: none;
  color: var(--ink);
  font: 500 18px/1.4 var(--sans);
}
.search-input::-webkit-search-cancel-button { display: none; }
.search-results { overflow-y: auto; overscroll-behavior: contain; }
.sr-item { display: block; padding: 12px 18px; border-bottom: 1px solid var(--rule); }
.sr-item:hover, .sr-item:focus-visible { background: var(--bg-2); outline: none; }
.sr-item strong { display: block; font-weight: 700; line-height: 1.3; }
.sr-item span { font-size: 12.5px; color: var(--ink-3); }
.sr-empty { padding: 18px; color: var(--ink-3); }

.new-pill {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 40;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transform: translateX(-50%);
  cursor: pointer;
}

/* ---------- Footer ---------- */

.foot { margin-top: 24px; padding: 42px 0 28px; background: var(--space); color: var(--space-ink-2); font-size: 14px; }
.foot .brand { padding: 0; }
.foot .brand-word { color: #fff; }
.foot-brand p { max-width: 400px; margin-top: 12px; line-height: 1.55; }
.foot-cols { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin: 34px 0; }
.foot-cols h2 { margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.foot-cols a { display: block; padding: 4px 0; }
.foot-cols a:hover { color: #fff; text-decoration: underline; }
.foot-legal { padding-top: 18px; border-top: 1px solid var(--space-rule); font-size: 12.5px; color: var(--space-ink-3); }
@media (min-width: 900px) {
  .foot .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); column-gap: 48px; }
  .foot-cols { margin: 0 0 34px; }
  .foot-legal { grid-column: 1 / -1; }
}

/* ---------- Motion, print ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .mast, .alert, .art-aside, .art-more, .share, .foot, .search, .inline-rel { display: none !important; }
  .art-layout { display: block; }
}
