:root {
  --paper: #f6f3ec;
  --paper-2: #efe8dc;
  --ink: #16140f;
  --navy: #15233f;
  --navy-ink: #f6f3ec;
  --crimson: #8b1e2d;
  --rule: #c9c0b2;
  --muted: #5c564c;
  --focus: #8b1e2d;
  --serif-display: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  --serif-body: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --wide: 72rem;
  --measure: 40rem;
  --masthead-height: 6.85rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  overflow-x: clip;
  scroll-padding-top: calc(var(--masthead-height) + 0.75rem);
  touch-action: pan-y pinch-zoom;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: clip;
  touch-action: pan-y pinch-zoom;
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(21, 35, 63, 0.03), transparent 8rem),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(21, 35, 63, 0.025) 28px
    );
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.62;
}

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

a {
  color: var(--crimson);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 30;
  padding: 0.4rem 0.7rem;
  background: var(--navy);
  color: var(--navy-ink);
  font-family: var(--sans);
  font-weight: 600;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(var(--wide), calc(100% - 2rem));
  min-width: 0;
  margin-inline: auto;
}

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

.label,
.kicker,
.nav a,
.subscribe__label,
.subscribe__button,
.chip,
.chips__label,
.markers time,
.guide__kicker,
.compare__tag,
.visual__note,
.briefing__btn,
.guides__more {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label,
.kicker,
.chips__label {
  margin: 0 0 0.55rem;
  color: var(--crimson);
  font-size: 0.72rem;
}

h1,
h2,
h3,
.nameplate__word {
  font-family: var(--serif-display);
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left center;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 8;
  min-width: 0;
  background: var(--paper);
  border-bottom: 0;
}

.masthead__brand {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.45rem 0 0.4rem;
}

.nameplate {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.nameplate__word {
  position: relative;
  display: inline-block;
  font-family: var(--serif-display);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  letter-spacing: 0.055em;
  line-height: 0.88;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-wrap: normal;
}

.nameplate__rule {
  position: absolute;
  left: 3%;
  right: 3%;
  top: 50%;
  height: 2px;
  background: var(--crimson);
  transform: translateY(-50%);
  pointer-events: none;
}

.masthead__subscribe {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.4rem 0.8rem;
  background: var(--navy);
  color: var(--navy-ink);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.masthead__subscribe:hover {
  background: var(--crimson);
  color: #fff;
}

.nav {
  min-width: 0;
  border-top: 1px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  box-shadow: 0 1px 0 var(--crimson);
}

.nav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.05rem 0.1rem;
  min-width: 0;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--crimson);
  box-shadow: inset 0 -2px 0 var(--crimson);
}

.masthead.is-compact .masthead__brand {
  padding: 0.28rem 0;
}

.masthead.is-compact .nameplate__word {
  font-size: 1.35rem;
}

.lead {
  padding: 1.6rem 0 2rem;
}

.lead__row {
  display: grid;
  gap: 1.35rem;
  min-width: 0;
  align-items: start;
}

.lead__copy {
  min-width: 0;
}

.lead h1 {
  font-size: clamp(2.15rem, 7vw, 4.2rem);
  letter-spacing: -0.03em;
}

.lead__dek,
.lead p {
  margin: 0 0 1rem;
}

.lead__dek {
  font-size: 1.18rem;
}

.lead__more-wrap {
  margin: 0 0 1rem;
}

.lead__more {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--crimson);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.lead__more:hover {
  color: var(--navy);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  margin: 1rem 0 0;
}

.lead__notes {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.lead__notes li {
  position: relative;
  margin: 0 0 0.72rem;
  padding-left: 0.95rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.lead__notes li:last-child {
  margin-bottom: 0;
}

.lead__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--crimson);
}

.chips--src {
  margin-top: 0.7rem;
}

.chips__label {
  margin: 0;
  flex: 0 0 auto;
}

.chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 2rem;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--navy);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--navy);
  overflow-wrap: anywhere;
}

.chip--law {
  background: var(--navy);
  color: var(--navy-ink);
}

.chip--bill {
  background: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}

.chip--src:hover {
  background: var(--navy);
  color: var(--navy-ink);
}

.lead__visual {
  min-width: 0;
  margin: 0;
}

.lead__hero {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  background: #0b0f14;
  border: 1px solid var(--navy);
}

.compare {
  min-width: 0;
}

.compare__holder {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 36rem);
  overflow: hidden;
  background: #ebe4d8;
  border: 1px solid var(--navy);
}

.compare__holder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.compare__photo {
  clip-path: inset(0 50% 0 0);
  z-index: 1;
}

.compare__ai {
  clip-path: inset(0 0 0 50%);
  filter: grayscale(1) contrast(1.55) brightness(0.05);
  z-index: 1;
}

.compare__scan {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(21, 35, 63, 0.07) 4px
  );
}

.compare__seam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 3px;
  transform: translateX(-50%);
  background: var(--crimson);
}

.compare__tag {
  position: absolute;
  bottom: 0.45rem;
  z-index: 4;
  margin: 0;
  color: var(--navy);
  font-size: 0.62rem;
}

.compare__tag--human {
  left: 0.55rem;
}

.compare__tag--ai {
  right: 0.55rem;
}

.visual__note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: none;
  overflow-wrap: anywhere;
}

.timeline,
.briefing,
.mentions,
.guides {
  padding: 0 0 2.4rem;
}

.timeline h2,
.briefing h2,
.mentions h2,
.guides h2 {
  padding-bottom: 0.55rem;
  border-bottom: 3px solid var(--navy);
}

.timeline .kicker {
  margin-bottom: 0.35rem;
}

.timeline h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
}

.markers {
  --marker: 0.92rem;
  --rail: 1.5px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 0;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.markers::before {
  content: "";
  position: absolute;
  left: calc(var(--marker) / 2 - var(--rail) / 2);
  top: 1.15rem;
  bottom: 1.15rem;
  width: var(--rail);
  background: var(--crimson);
}

.markers li {
  position: relative;
  min-width: 0;
  padding: 0.95rem 0 0.95rem 1.7rem;
}

.markers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: var(--marker);
  height: var(--marker);
  border: 0;
  background: radial-gradient(circle at center, var(--paper) 22%, var(--crimson) 24%);
  border-radius: 50%;
  z-index: 1;
}

.markers time {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--crimson);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.markers strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--navy);
  font-family: var(--condensed);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.12;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.markers span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.briefing__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.briefing__nav {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.briefing__btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--navy);
  background: var(--paper);
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.briefing__btn:hover {
  background: var(--navy);
  color: var(--navy-ink);
}

.strip {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  padding: 0.15rem max(1rem, calc((100% - var(--wide)) / 2 + 1rem)) 0.85rem;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(1rem, calc((100% - var(--wide)) / 2 + 1rem));
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.strip:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.strip.is-dragging {
  scroll-snap-type: none;
}

.strip__card {
  flex: 0 0 min(18.5rem, calc(100vw - 3rem));
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--navy);
  scroll-snap-align: start;
}

.strip__card:hover {
  color: inherit;
}

.strip__card:hover h3 {
  color: var(--crimson);
}

.strip__plate {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  min-width: 0;
  background: var(--navy);
}

.strip__plate--navy {
  display: grid;
  place-items: center;
  padding: 0.6rem;
  background:
    linear-gradient(160deg, rgba(246, 243, 236, 0.08), transparent 45%),
    var(--navy);
}

.strip__plate--navy span {
  color: var(--navy-ink);
  font-family: var(--condensed);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.strip__body {
  min-width: 0;
  padding: 0.85rem 0.9rem 1rem;
}

.strip__body h3 {
  color: var(--navy);
  font-family: var(--condensed);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.strip__body p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.mentions__list {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(21, 35, 63, 0.22);
}

.mention {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  row-gap: 0.08rem;
  align-items: center;
  min-width: 0;
  padding: 0.48rem 0.2rem 0.48rem 0;
  border-bottom: 1px solid rgba(21, 35, 63, 0.12);
  color: inherit;
  text-decoration: none;
}

.mention:hover,
.mention:focus-visible {
  color: inherit;
  background: rgba(21, 35, 63, 0.045);
}

.mention:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.mention:hover .mention__title,
.mention:focus-visible .mention__title {
  color: var(--crimson);
}

.mention:hover .mention__go,
.mention:focus-visible .mention__go {
  color: var(--navy-ink);
  background: var(--crimson);
  border-color: var(--crimson);
}

.mention__meta {
  grid-column: 1;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
}

.mention__title {
  grid-column: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.mention__go {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(21, 35, 63, 0.35);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1;
}

.guides__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  min-width: 0;
  margin-top: 1rem;
}

.guide {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  min-height: 6.5rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--navy);
  color: inherit;
  text-decoration: none;
}

.guide:hover {
  color: inherit;
  background: rgba(21, 35, 63, 0.03);
}

.guide.is-extra {
  display: none;
}

.guides__grid.is-open .guide.is-extra {
  display: grid;
}

.guide__kicker {
  color: var(--crimson);
  font-size: 0.65rem;
}

.guide strong {
  color: var(--navy);
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.guide span:last-child {
  color: var(--muted);
  font-size: 0.98rem;
}

.guides__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  min-height: 2.75rem;
  min-width: 12rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.7rem;
  cursor: pointer;
  touch-action: manipulation;
}

.guides__more:hover {
  background: var(--navy);
  color: var(--navy-ink);
}

.subscribe-band {
  padding: 1.4rem 0 1.6rem;
  background: var(--navy);
}

.subscribe-band .subscribe {
  max-width: 36rem;
  min-width: 0;
}

.subscribe-band .subscribe__status {
  color: #d7d2c6;
}

.subscribe-band .subscribe__status[data-state="pending"] {
  color: #d7d2c6;
  border-left-color: #8a8376;
}

.subscribe-band .subscribe__status[data-state="ok"] {
  color: #dce8c8;
  border-left-color: #8fa86a;
}

.subscribe-band .subscribe__status[data-state="error"] {
  color: #f0c4b8;
  border-left-color: #c45c4a;
}

.subscribe-band .subscribe__input {
  background: var(--paper);
  border-color: transparent;
}

.subscribe-band .subscribe__button {
  background: var(--crimson);
  color: #fff;
}

.hero {
  min-width: 0;
  margin: 0 auto;
  padding: 2rem 0 1.4rem;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.split {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0 auto 2rem;
  border-top: 2px solid var(--navy);
}

.split__col {
  min-width: 0;
  padding: 1.2rem 0;
}

.split__col + .split__col {
  border-top: 1px solid var(--navy);
}

.split__col h2 {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--navy);
}

.arg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.arg-list p {
  margin: 0;
}

.statement__when {
  margin: 0 0 0.28rem;
  color: var(--crimson);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cite {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.7rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page .cite {
  width: 100%;
  max-width: none;
}

.subscribe__row {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.subscribe__label {
  font-size: 0.68rem;
}

.subscribe__input,
.subscribe__button {
  font: inherit;
  min-height: 2.75rem;
  border-radius: 0;
}

.subscribe__input {
  width: 100%;
  min-width: 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.subscribe__button {
  border: 0;
  padding: 0.55rem 1rem;
  background: var(--navy);
  color: var(--navy-ink);
  font-size: 0.72rem;
  cursor: pointer;
  touch-action: manipulation;
}

.subscribe__button:hover {
  background: var(--crimson);
  color: #fff;
}

.subscribe__button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.subscribe__status {
  margin: 0.65rem 0 0;
  min-height: 1.5em;
  padding: 0.4rem 0.65rem;
  border-left: 3px solid transparent;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.subscribe__status[data-state="pending"] {
  color: var(--muted);
  border-left-color: var(--rule);
}

.subscribe__status[data-state="ok"] {
  color: #3d5a2c;
  border-left-color: #8fa86a;
}

.subscribe__status[data-state="error"] {
  color: #8b1e2d;
  border-left-color: #c45c4a;
}

.page {
  box-sizing: border-box;
  width: min(44rem, calc(100% - 2.5rem));
  max-width: 44rem;
  min-width: 0;
  margin-inline: auto;
  padding: 1.75rem 0 3.5rem;
}

.page .hero,
.is-inner .hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 1.75rem;
}

.page .kicker {
  margin: 0 0 0.85rem;
}

.page h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  white-space: normal;
}

.page .lede {
  margin: 0 0 0.35rem;
  max-width: none;
  font-size: 1.12rem;
  line-height: 1.55;
}

.page .prose,
.page .next-link,
.page .split,
.page .cite {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.page .prose {
  margin: 0 0 1.75rem;
}

.page .prose h2 {
  margin: 1.85rem 0 0.7rem;
}

.page .hero + .prose h2,
.page .hero + .split {
  margin-top: 0.15rem;
}

.prose {
  min-width: 0;
}

.prose p,
.prose li {
  color: var(--ink);
}

.page .prose p,
.page .prose li {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.page .split {
  margin: 0 0 2rem;
}

.next-link {
  min-width: 0;
  margin: 1.5rem auto 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
}

.page .next-link {
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
}

.colophon {
  background: #efeae0;
  border-top: 3px solid var(--navy);
  padding: 1.2rem 0 1.5rem;
}

.colophon__fine {
  margin: 0;
  color: #7a746a;
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1.4;
}

.colophon__legal {
  margin: 0.35rem 0 0;
  max-width: 38rem;
  color: #b4ada2;
  font-family: var(--sans);
  font-size: 0.6rem;
  line-height: 1.35;
}

code {
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 0.88em;
}

@media (min-width: 781px) {
  :root {
    --masthead-height: 6.85rem;
  }

  .markers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
  }

  .markers::before {
    left: calc(var(--marker) / 2);
    right: calc(25% - var(--marker) / 2);
    top: calc(var(--marker) / 2 - var(--rail) / 2);
    bottom: auto;
    width: auto;
    height: var(--rail);
  }

  .markers li {
    padding: 1.85rem 1.15rem 0 0;
  }

  .markers li::before {
    top: 0;
    left: 0;
  }

  .markers li::after {
    display: none;
  }

  .subscribe__row {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }

  .mention {
    grid-template-columns: 13.5rem minmax(0, 1fr) auto;
    grid-template-rows: auto;
    column-gap: 0.85rem;
    row-gap: 0;
    align-items: center;
    padding-top: 0.42rem;
    padding-bottom: 0.42rem;
  }

  .mention__meta {
    grid-column: 1;
    grid-row: 1;
  }

  .mention__title {
    grid-column: 2;
    grid-row: 1;
    -webkit-line-clamp: 1;
  }

  .mention__go {
    grid-column: 3;
    grid-row: 1;
  }

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

@media (min-width: 960px) {
  :root {
    --masthead-height: 7.1rem;
  }

  .lead__row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: start;
  }

  .lead h1 {
    font-size: clamp(2rem, 4.1vw, 3.35rem);
  }

  .compare__holder {
    max-height: min(78vh, 38rem);
  }

  .split,
  .page .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
  }

  .split__col + .split__col {
    border-top: 0;
    border-left: 1px solid var(--navy);
    padding-left: 1.75rem;
  }

  .split__col:first-child {
    padding-right: 1.75rem;
  }
}

@media (max-width: 780px) {
  :root {
    --masthead-height: 5.85rem;
  }

  .masthead__brand {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nameplate {
    grid-column: 1;
    justify-self: start;
  }

  .nameplate__word {
    font-size: clamp(1.2rem, 7vw, 1.55rem);
  }

  .masthead.is-compact .nameplate__word {
    font-size: 1.15rem;
  }

  .masthead__subscribe {
    grid-column: 2;
    padding: 0.4rem 0.7rem;
  }

  .nav__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    touch-action: pan-x pan-y;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .lead {
    padding: 1.1rem 0 1.15rem;
  }

  .lead h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .lead__dek {
    font-size: 1.05rem;
  }

  .guides__more {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --masthead-height: 5.35rem;
  }

  .wrap {
    width: min(var(--wide), calc(100% - 1.25rem));
  }

  .chips__label {
    flex: 1 0 100%;
    margin-bottom: 0.1rem;
  }

  .compare__holder {
    max-height: min(56vh, 22rem);
  }

  .compare__tag--human {
    left: 0.4rem;
  }

  .compare__tag {
    bottom: 0.35rem;
  }

  .strip__card {
    flex-basis: calc(100vw - 2.5rem);
  }

  .briefing__head {
    align-items: flex-start;
  }

  body {
    font-size: 1.05rem;
  }
}

@media (max-width: 360px) {
  :root {
    --masthead-height: 5.1rem;
  }

  .wrap {
    width: min(var(--wide), calc(100% - 1rem));
  }

  .nameplate__word {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
  }

  .lead h1 {
    font-size: 1.7rem;
  }

  .compare__holder {
    max-height: min(50vh, 18rem);
  }

  .nav a {
    padding-inline: 0.5rem;
    font-size: 0.62rem;
  }

  .chip {
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progress__bar {
    transition: none;
  }
}
