/* ==========================================================================
   Money & World — main.css
   Extracted from the design handoff. Tokens are authoritative; do not drift.
   Rules: no border-radius, no shadows, no gradients. Depth = thin rules + whitespace.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-body: #1a1a1a;
  --ink-muted: #374151;
  --ink-summary: #5b6472;
  --ink-meta: #6b7280;
  --ink-faint: #9ca3af;

  --navy: #0a2540;
  --navy-dot: #4a6785;
  --navy-tick: #c3cfdd;

  --up: #0f7b41;
  --down: #c62828;

  --rule-strong: #111111;
  --rule: #e6e8eb;
  --rule-light: #eef0f2;
  --chip-border: #d7dbe0;
  --callout-bg: #f7f9fb;

  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Libre Franklin', Helvetica, Arial, sans-serif;

  --container: 1240px;
  --pad: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--navy); text-decoration: none; }

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

/* Accessibility: visible focus for keyboard users. */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.tnum { font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   1. Market strip
   -------------------------------------------------------------------------- */
.mkt {
  width: 100%;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.mkt .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mkt-list {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  flex-wrap: wrap;
  list-style: none;
}
.mkt-item { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.mkt-label { font-weight: 700; color: var(--ink); }
.mkt-val { color: var(--ink-muted); }
.mkt-chg { font-weight: 600; }
.mkt-chg.up { color: var(--up); }
.mkt-chg.down { color: var(--down); }
/* A flat day is not a green day. */
.mkt-chg.flat { color: var(--ink-faint); font-weight: 500; }
.mkt-note {
  font-size: 11px;
  color: var(--ink-meta);
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   2. Breaking ticker
   -------------------------------------------------------------------------- */
.brk { width: 100%; background: var(--navy); }
.brk .wrap { height: 40px; display: flex; align-items: center; gap: 18px; }
.brk-chip {
  flex: 0 0 auto;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 4px 9px;
}
/* Fade both edges so headlines dissolve rather than being sliced mid-word,
   and so the scroll does not run hard into the timestamp on the right. */
.brk-mask {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 40px), transparent 100%);
}
.brk-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: brk-scroll 34s linear infinite;
}
.brk-mask:hover .brk-track,
.brk-mask:focus-within .brk-track { animation-play-state: paused; }
/* flex-shrink:0 is required. The track is inline-flex, so without it the long
   headlines compress and overlap each other instead of flowing in a line. */
.brk-item {
  color: #dbe3ec;
  font-size: 13px;
  font-weight: 500;
  flex: 0 0 auto;
  white-space: nowrap;
}
.brk-item:hover { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.brk-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--navy-dot); margin: 0 18px; flex: 0 0 auto;
}
.brk-time { font-size: 11px; color: var(--navy-tick); white-space: nowrap; flex: 0 0 auto; }

@keyframes brk-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brk-track { animation: none; }
  .brk-mask { overflow-x: auto; }
}

/* --------------------------------------------------------------------------
   3. Masthead
   -------------------------------------------------------------------------- */
.mast { padding: 22px 0 14px; }
.mast .wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.mast-meta { font-size: 11.5px; color: var(--ink-meta); letter-spacing: .02em; line-height: 1.5; }
.mast-brand { text-align: center; }
.mast-word {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
}
.mast-word .amp { color: var(--navy); }
.mast-kicker {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-meta);
}
.mast-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.mast-signin { font-size: 12px; font-weight: 600; color: var(--ink); }

.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 9px 15px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover { background: #06182b; }

/* Condensed masthead on interior pages */
.mast--sm { padding: 16px 0 12px; }
.mast--sm .mast-word { font-size: 34px; }

/* --------------------------------------------------------------------------
   4. Primary nav
   -------------------------------------------------------------------------- */
.nav {
  width: 100%;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
}
.nav .wrap {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.nav-list { display: flex; align-items: center; gap: 26px; list-style: none; height: 100%; }
.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); border-bottom-color: var(--navy); }
.nav-link[aria-current="page"] { color: var(--navy); border-bottom-color: var(--navy); }
.nav-search { font-size: 12px; font-weight: 600; color: var(--ink-muted); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Shared story bits
   -------------------------------------------------------------------------- */
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
}

.hl { font-family: var(--serif); color: var(--ink); transition: color .12s ease; display: block; }
a:hover .hl, .hl:hover { color: var(--navy); }

.summary { font-size: 13.5px; line-height: 1.5; color: var(--ink-summary); }

.byline {
  font-size: 11.5px;
  color: var(--ink-meta);
  letter-spacing: .01em;
}
.byline .sep { margin: 0 6px; }

/* The signature device. Never omit. */
.wic {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
}
.wic:hover { text-decoration: underline; text-underline-offset: 2px; }

.ph {
  background: repeating-linear-gradient(45deg, #f1f3f5 0 10px, #e8eaee 10px 20px);
  width: 100%;
}
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-16-10 { aspect-ratio: 16 / 10; }

.caption { font-size: 11px; color: var(--ink-meta); margin-top: 7px; line-height: 1.45; }

.sec-label { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.sec-bullet { width: 8px; height: 8px; background: var(--navy); flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Homepage
   -------------------------------------------------------------------------- */
.secondaries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.sec-story { display: grid; grid-template-columns: 132px 1fr; gap: 16px; align-items: start; }
.sec-story .hl { font-size: 19px; line-height: 1.25; font-weight: 600; margin: 6px 0 8px; }

.lead {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 44px;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule-strong);
}
.lead-hl {
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-weight: 700;
  margin: 10px 0 14px;
}
.lead-dek { font-family: var(--serif); font-size: 16.5px; line-height: 1.5; color: var(--ink-muted); margin-bottom: 14px; }

.grid-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  padding: 30px 0 10px;
}
.sec-block { padding: 18px 0; border-bottom: 1px solid var(--rule-light); }
.sec-block-story { padding: 11px 0; border-bottom: 1px solid var(--rule-light); }
.sec-block-story:last-child { border-bottom: 0; }
.sec-block-story .hl { font-size: 18px; line-height: 1.28; font-weight: 600; margin-bottom: 5px; }
.sec-block-story .summary { margin-bottom: 7px; }

.sec-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-meta);
}
.sec-more:hover { color: var(--navy); }

/* Latest: a dense river of everything, newest first. Three columns of plain
   rows, no images — deliberately different texture from the section grid so
   the page has rhythm rather than one repeated card shape. */
.latest { border-top: 1px solid var(--rule-strong); padding: 28px 0 36px; }
.latest .sec-label { justify-content: flex-start; }
.latest-time { margin-left: auto; font-size: 11px; color: var(--ink-faint); letter-spacing: .04em; }
.latest-list {
  list-style: none;
  columns: 3;
  column-gap: 44px;
  margin-top: 4px;
}
.latest-item {
  break-inside: avoid;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 10px;
  align-items: baseline;
}
.latest-item time { font-size: 11px; color: var(--ink-faint); font-variant-numeric: tabular-nums; white-space: nowrap; }
.latest-sec {
  grid-column: 2;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
}
.latest-item a { grid-column: 2; }
.latest-item .hl { font-size: 14.5px; line-height: 1.34; font-weight: 500; }

.module { border-top: 1px solid var(--rule-strong); padding: 30px 0; }
.module-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 44px; }

table.data { width: 100%; border-collapse: collapse; font-size: 13px; }
table.data th {
  text-align: left;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-meta);
  padding: 0 0 9px;
  border-bottom: 1px solid var(--rule);
}
table.data td { padding: 9px 0; border-bottom: 1px solid var(--rule-light); font-variant-numeric: tabular-nums; }
table.data td:not(:first-child) { text-align: right; }
table.data th:not(:first-child) { text-align: right; }
table.data tbody tr:hover { background: var(--callout-bg); }
.data-name { font-weight: 700; color: var(--ink); }

.opinion { border-top: 1px solid var(--rule-strong); padding: 30px 0 40px; }
.opinion-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 44px; }
.opinion-lead { border-right: 1px solid var(--rule); padding-right: 44px; }
.opinion-lead .hl { font-size: 30px; line-height: 1.15; font-weight: 700; margin-bottom: 10px; }
.columnist { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--rule-light); }
.columnist:last-child { border-bottom: 0; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: #ebedf0; flex: 0 0 auto; }
.columnist .hl { font-size: 17px; line-height: 1.3; font-weight: 600; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Section pages
   -------------------------------------------------------------------------- */
.title-band {
  border-bottom: 1px solid var(--rule-strong);
  padding: 26px 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.title-band h1 { font-family: var(--serif); font-size: 44px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; margin-top: 8px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border: 1px solid var(--chip-border);
  color: var(--ink-muted);
  white-space: nowrap;
}
.chip[aria-current="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

.main-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; padding: 30px 0 44px; }
.rail { border-left: 1px solid var(--rule); padding-left: 32px; position: sticky; top: 24px; align-self: start; }
.rail-block { margin-bottom: 30px; }
.rail-h {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: 12px;
}
.newsletter { border: 1px solid var(--navy); padding: 18px; }
.newsletter h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.newsletter p { font-size: 12.5px; color: var(--ink-summary); line-height: 1.5; margin-bottom: 12px; }
.newsletter input[type="email"] {
  width: 100%;
  border: 1px solid var(--chip-border);
  padding: 9px 10px;
  font-size: 13px;
  font-family: var(--sans);
  margin-bottom: 8px;
}
.newsletter .btn { width: 100%; text-align: center; }

.lead-story-sec .hl { font-size: 36px; line-height: 1.1; font-weight: 700; letter-spacing: -0.015em; margin: 10px 0 12px; }
.lead-story-sec .lead-dek { font-size: 16px; }

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; padding: 26px 0 44px; }
.article-main { max-width: 720px; margin: 0 auto; width: 100%; }
.crumb { font-size: 11.5px; color: var(--ink-meta); margin-bottom: 16px; }
.article-h1 { font-family: var(--serif); font-size: 46px; line-height: 1.06; font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 14px; }
.article-dek { font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--ink-muted); margin-bottom: 20px; }
.byline-row {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.byline-who { display: flex; align-items: center; gap: 12px; }
.byline-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.byline-meta { font-size: 11.5px; color: var(--ink-meta); margin-top: 2px; }
.byline-tools { display: flex; gap: 8px; }
.tool {
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid var(--chip-border);
  padding: 6px 11px;
  color: var(--ink-muted);
}

/* The "What it changes" callout. The brand's defining device. */
.wic-box {
  border-left: 3px solid var(--navy);
  background: var(--callout-bg);
  padding: 18px 20px;
  margin: 24px 0;
}
.wic-box .rail-h { border: 0; padding: 0; margin-bottom: 9px; }
.wic-box ul { margin: 0; padding-left: 18px; }
.wic-box li { font-size: 14.5px; line-height: 1.55; color: var(--ink-body); margin-bottom: 6px; }
.wic-box li:last-child { margin-bottom: 0; }

.prose { font-family: var(--serif); font-size: 19px; line-height: 1.72; color: var(--ink-body); }
.prose > p { margin-bottom: 22px; }
.prose > h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 34px 0 14px;
}
.prose > h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; margin: 28px 0 10px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { margin: 0 0 22px 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--navy);
  padding-left: 20px;
  margin: 26px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.prose blockquote cite { display: block; font-size: 13px; font-style: normal; color: var(--ink-meta); font-family: var(--sans); margin-top: 10px; }
.prose--dropcap > p:first-of-type::first-letter {
  float: left;
  font-size: 62px;
  line-height: .84;
  font-weight: 700;
  color: var(--navy);
  padding: 4px 8px 0 0;
}

.source-note {
  border-top: 1px solid var(--rule);
  margin-top: 30px;
  padding-top: 16px;
  font-size: 12.5px;
  color: var(--ink-meta);
  line-height: 1.6;
}
.source-note a { text-decoration: underline; text-underline-offset: 2px; }

.mostread { list-style: none; }
.mostread li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--rule-light); }
.mostread .n { font-family: var(--serif); font-size: 26px; font-weight: 700; color: #d6dae0; line-height: 1; }
.mostread .hl { font-size: 14.5px; line-height: 1.35; font-weight: 600; }

.related { border-top: 1px solid var(--rule-strong); padding: 30px 0 44px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 18px; }
.related-card .hl { font-size: 18px; line-height: 1.28; font-weight: 600; margin: 8px 0 8px; }

/* Brief list */
.brief-list { list-style: none; }
.brief {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 24px;
  align-items: start;
}
.brief .hl { font-size: 20px; line-height: 1.25; font-weight: 600; margin-bottom: 6px; }
.brief-meta { font-size: 11px; color: var(--ink-faint); margin-top: 8px; letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   Static / policy pages
   -------------------------------------------------------------------------- */
.page { max-width: 720px; margin: 0 auto; padding: 34px 0 56px; }
.page h1 { font-family: var(--serif); font-size: 42px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px; }
.page .standfirst { font-family: var(--serif); font-size: 19px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--rule-strong); }
.page h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 34px 0 12px;
}
.page h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; margin: 24px 0 8px; }
.page p, .page li { font-family: var(--serif); font-size: 17px; line-height: 1.7; color: var(--ink-body); margin-bottom: 16px; }
.page ul, .page ol { margin: 0 0 18px 22px; }
.page li { margin-bottom: 7px; }
.page a { text-decoration: underline; text-underline-offset: 2px; }
.page table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-family: var(--sans); }
.page th, .page td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.page th { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.page blockquote { border-left: 3px solid var(--navy); padding-left: 18px; margin: 22px 0; color: var(--ink-muted); }
.page hr { border: 0; border-top: 1px solid var(--rule); margin: 32px 0; }
.updated { font-size: 12px; color: var(--ink-faint); margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--rule); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.foot { border-top: 1px solid var(--rule-strong); padding: 44px 0 22px; }
.foot-grid { display: grid; grid-template-columns: 270px 1fr; gap: 56px; }
.foot-word { font-family: var(--serif); font-size: 24px; font-weight: 700; line-height: 1; }
.foot-word .amp { color: var(--navy); }
.foot-desc { font-size: 12.5px; color: var(--ink-summary); line-height: 1.55; margin: 12px 0 16px; }
.foot-cols { display: grid; grid-template-columns: repeat(4, minmax(130px, 1fr)); gap: 28px 36px; }
.foot-h {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 12px;
}
.foot-list { list-style: none; }
.foot-list li { margin-bottom: 8px; }
.foot-list a { color: #4b5563; font-size: 12.5px; }
.foot-list a:hover { color: var(--navy); }
.foot-legal {
  border-top: 1px solid var(--rule);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-legal a, .foot-legal span { color: var(--ink-faint); font-size: 11.5px; }
.foot-legal a:hover { color: var(--navy); }
.foot-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --pad: 18px; }

  .secondaries,
  .lead,
  .grid-sections,
  .module-grid,
  .opinion-grid,
  .main-grid,
  .article-grid,
  .related-grid { grid-template-columns: 1fr; column-gap: 0; }

  .lead { gap: 20px; }
  .secondaries { gap: 24px; }
  .grid-sections { padding-top: 10px; }

  .rail { border-left: 0; padding-left: 0; position: static; border-top: 1px solid var(--rule-strong); padding-top: 24px; }
  .opinion-lead { border-right: 0; padding-right: 0; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }

  .nav .wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; gap: 20px; }
  .nav-list { gap: 20px; }
  .nav-search { display: none; }

  .mast .wrap { grid-template-columns: 1fr; gap: 12px; }
  .mast-meta { text-align: center; }
  .mast-actions { justify-content: center; }

  .mast-word { font-size: 32px; }
  .mast--sm .mast-word { font-size: 26px; }
  .article-h1 { font-size: 30px; }
  .title-band h1 { font-size: 30px; }
  .lead-hl { font-size: 29px; }
  .lead-story-sec .hl { font-size: 26px; }
  .opinion-lead .hl { font-size: 24px; }
  .page h1 { font-size: 30px; }
  .article-dek { font-size: 18px; }
  .prose { font-size: 17.5px; }

  .brief { grid-template-columns: 1fr; gap: 12px; }
  .brief-photo { order: -1; }
  .sec-story { grid-template-columns: 100px 1fr; gap: 12px; }
  .foot-cols { grid-template-columns: 1fr; }
  .latest-list { columns: 1; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .latest-list { columns: 2; }
}
