:root {
  --paper: #f3efe5;
  --paper-deep: #e8e1d3;
  --panel: #fffdf7;
  --ink: #15150f;
  --muted: #6c675c;
  --line: #cdc5b5;
  --orange: #f04e30;
  --orange-dark: #b92b16;
  --acid: #d8ff52;
  --blue: #a8d8ff;
  --max: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-dark);
}

button,
input {
  font: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--acid);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  border-bottom: 1px solid var(--ink);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px 24px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.brand {
  font-size: clamp(2.25rem, 7vw, 6.4rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.085em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand:hover {
  color: inherit;
}

.brand-slash {
  color: var(--orange);
}

.masthead-note {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.35;
}

.masthead-note:last-child {
  justify-self: end;
  text-align: right;
}

.nav-wrap {
  border-top: 1px solid var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 12px 18px 11px 0;
  margin-right: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
  min-height: 540px;
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 78px) 64px 0;
  border-right: 1px solid var(--ink);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.4vw, 7rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  font-style: italic;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: -0.03em;
  bottom: 0.05em;
  left: -0.03em;
  z-index: -1;
  height: 0.22em;
  content: "";
  background: var(--acid);
  transform: rotate(-1.2deg);
}

.hero-deck {
  max-width: 720px;
  margin: 30px 0 0;
  color: #35332c;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  color: var(--paper);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--orange);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--acid);
}

.week-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(42px, 6vw, 78px) 0 54px clamp(24px, 4vw, 48px);
}

.week-panel h2 {
  margin: 0 0 28px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trend-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.trend-list li {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.trend-rank {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.trend-name {
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.83rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trend-count {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.as-of {
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.72rem;
}

.section {
  padding: clamp(62px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--ink);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-header h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  border: 1px solid var(--ink);
  background: var(--panel);
  box-shadow: 9px 9px 0 var(--ink);
}

.feature-main {
  padding: clamp(28px, 5vw, 64px);
  border-right: 1px solid var(--ink);
}

.story-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 2px 9px;
  background: var(--acid);
  border: 1px solid var(--ink);
}

.pill-blue {
  background: var(--blue);
}

.pill-orange {
  color: #fff;
  background: var(--orange);
}

.feature-main h3 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.feature-main h3 a {
  text-decoration: none;
}

.feature-main h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
}

.feature-deck {
  max-width: 740px;
  margin: 24px 0 0;
  color: #444136;
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-score {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper-deep);
}

.score-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.score-number small {
  font-size: 0.2em;
  letter-spacing: 0;
}

.verdict {
  margin: 20px 0 0;
  font-weight: 800;
}

.score-detail {
  margin: auto 0 0;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 16px;
  margin-bottom: 28px;
}

.search-box {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--ink);
  border-radius: 0;
  outline: none;
}

.search-box:focus {
  box-shadow: 0 0 0 3px var(--acid);
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.filter-button {
  flex: 0 0 auto;
  padding: 0 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--acid);
}

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

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  background: rgba(255, 253, 247, 0.45);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.story-card[hidden] {
  display: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 48px;
}

.card-rank {
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.card-installs {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.08;
}

.story-card h3 code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75em;
}

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

.story-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.story-card.coming-soon {
  background: transparent;
}

.story-card.coming-soon .text-link {
  color: var(--muted);
  text-decoration: none;
}

.no-results {
  display: none;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--ink);
}

.no-results.is-visible {
  display: block;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 8vw, 110px);
}

.manifesto-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.manifesto-copy {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.35;
}

.manifesto-copy p {
  margin: 0 0 1.1em;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  padding: 0;
  border: 1px solid var(--ink);
  list-style: none;
}

.metric {
  padding: 24px;
  border-right: 1px solid var(--ink);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.guide-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.guide-copy {
  padding: clamp(34px, 6vw, 72px);
}

.guide-copy h2 {
  max-width: 580px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.guide-copy p {
  max-width: 590px;
  margin: 25px 0 0;
  color: #cbc5b8;
}

.guide-copy .button {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  box-shadow: 4px 4px 0 var(--orange);
}

.guide-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 42px clamp(34px, 6vw, 72px);
  color: var(--ink);
  background: var(--acid);
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  font-weight: 800;
  border-bottom: 1px solid rgba(21, 21, 15, 0.35);
}

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

.guide-list span {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1;
}

.site-footer {
  color: #d8d1c3;
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 34px;
}

.footer-brand {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.footer-deck {
  max-width: 560px;
  margin: 22px 0 0;
  color: #aaa396;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 22px;
  align-content: start;
  padding-top: 12px;
}

.footer-links a {
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  color: #7f796e;
  font-size: 0.7rem;
  border-top: 1px solid #3c3a33;
}

/* Article pages */
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  border-bottom: 1px solid var(--ink);
}

.article-heading {
  padding: clamp(54px, 8vw, 104px) clamp(30px, 7vw, 92px) 64px 0;
  border-right: 1px solid var(--ink);
}

.article-heading h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.052em;
}

.article-heading .standfirst {
  max-width: 760px;
  margin: 28px 0 0;
  color: #454137;
  font-size: 1.12rem;
}

.article-meta {
  display: flex;
  flex-direction: column;
  padding: clamp(42px, 6vw, 78px) 0 54px clamp(28px, 5vw, 56px);
}

.article-meta dl {
  margin: 0;
}

.article-meta div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.article-meta dt {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-meta dd {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.article-meta .button {
  margin-top: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) minmax(180px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 9vw, 120px);
}

.article-toc {
  align-self: start;
  position: sticky;
  top: 24px;
}

.article-toc strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

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

.article-toc a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--orange-dark);
}

.article-body {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.2rem);
  line-height: 1.85;
}

.article-body > :first-child {
  margin-top: 0;
}

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

.article-body h2 {
  margin: 2.15em 0 0.62em;
  font-family: var(--sans);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.article-body h3 {
  margin: 1.8em 0 0.55em;
  font-family: var(--sans);
  font-size: 1.18rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.6em;
  padding-left: 1.25em;
}

.article-body li {
  margin-bottom: 0.6em;
}

.article-body code {
  padding: 0.12em 0.3em;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82em;
}

.article-body pre {
  margin: 1.8em 0;
  padding: 20px;
  overflow-x: auto;
  color: #f4f0e7;
  background: var(--ink);
  border-left: 7px solid var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  line-height: 1.65;
}

.article-body pre code {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 0 0 0 25px;
  font-size: 1.35em;
  font-style: italic;
  line-height: 1.45;
  border-left: 6px solid var(--orange);
}

.article-body .lead::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  color: var(--orange-dark);
  font-family: var(--serif);
  font-size: 4.5em;
  line-height: 0.72;
}

.scorecard {
  margin: 2.2em 0;
  border: 1px solid var(--ink);
  font-family: var(--sans);
}

.scorecard-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
}

.scorecard-row:last-child {
  border-bottom: 0;
}

.scorecard-row strong:last-child {
  color: var(--orange-dark);
}

.callout {
  margin: 2.1em 0;
  padding: 24px;
  background: var(--acid);
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-list {
  font-family: var(--sans);
  font-size: 0.83rem;
}

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

.rail-box {
  position: sticky;
  top: 24px;
  padding: 19px;
  background: rgba(255, 253, 247, 0.55);
  border: 1px solid var(--line);
}

.rail-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.rail-box a {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-stories {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--ink);
}

.related-stories h2 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

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

.related-card {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--ink);
  text-decoration: none;
}

.related-card:hover {
  color: var(--ink);
  background: var(--acid);
}

.related-card span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.18;
}

.ad-boundary {
  min-height: 1px;
}

@media (max-width: 980px) {
  .masthead {
    grid-template-columns: 1fr auto;
  }

  .masthead-note:first-child {
    display: none;
  }

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

  .hero-copy,
  .article-heading {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .week-panel,
  .article-meta {
    padding-left: 0;
  }

  .trend-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trend-list li:nth-child(odd) {
    padding-right: 20px;
  }

  .trend-list li:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }

  .as-of {
    margin-top: 18px;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .article-toc {
    display: none;
  }

  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }
}

@media (max-width: 720px) {
  .utility-bar span:last-child,
  .masthead-note {
    display: none;
  }

  .masthead {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brand {
    font-size: clamp(2.7rem, 15vw, 5rem);
  }

  .site-nav a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .hero h1,
  .article-heading h1 {
    font-size: clamp(2.85rem, 15vw, 5.4rem);
  }

  .trend-list {
    display: block;
  }

  .trend-list li:nth-child(odd),
  .trend-list li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .section-header,
  .featured-story,
  .manifesto,
  .guide-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-main {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .feature-score {
    min-height: 260px;
  }

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

  .filters {
    min-height: 42px;
  }

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

  .story-card {
    min-height: 330px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

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

  .metric:last-child {
    border-bottom: 0;
  }

  .article-heading {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .article-layout {
    display: block;
  }

  .article-rail {
    margin-top: 48px;
  }

  .rail-box {
    position: static;
  }

  .footer-meta {
    display: block;
  }

  .footer-meta span {
    display: block;
    margin-top: 4px;
  }
}

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

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