:root {
  --blue: #1727f5;
  --red: #ff5538;
  --ink: #111111;
  --paper: #ffffff;
  --mist: #f3f4f6;
  --line: #d8d9dd;
  --soft-ink: #606267;
  --radius: 0;
  --container: 1540px;
  --pad: clamp(18px, 3vw, 48px);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.search-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { color: inherit; }
button { border: 0; background: none; }
textarea { resize: vertical; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { background: var(--red); color: white; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(17,17,17,.16);
  backdrop-filter: blur(18px);
}
.topbar-inner {
  width: min(100%, var(--container));
  height: 76px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.logo, .dialog-logo, .footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.logo span, .dialog-logo span, .footer-brand span {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}
.logo em, .dialog-logo em, .footer-brand em {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.04rem;
  font-weight: 400;
}
.archive-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a6b70;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.archive-label-dot { width: 8px; height: 8px; background: var(--red); border-radius: 999px; }
.desktop-nav { justify-self: end; display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  position: relative;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.search-trigger {
  min-height: 42px;
  padding: 0 10px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.search-trigger:hover, .search-trigger:focus-visible { background: var(--ink); color: white; }
.search-trigger svg { width: 17px; height: 17px; }
.search-trigger span { font-size: .72rem; font-weight: 700; }
.search-trigger kbd {
  padding: 3px 6px;
  border: 1px solid currentColor;
  color: currentColor;
  font-family: inherit;
  font-size: .58rem;
  opacity: .55;
}

.hero {
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}
.hero-inner {
  width: min(100%, var(--container));
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) var(--pad) clamp(46px, 6vh, 84px);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(480px, .82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 124px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-kicker {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-kicker span { width: 36px; height: 3px; background: var(--red); }
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7.3vw, 8.4rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .82;
}
.hero h1 em {
  color: var(--blue);
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-intro {
  max-width: 620px;
  margin: 38px 0 0;
  color: #4f5156;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}
.hero-search {
  width: min(100%, 680px);
  min-height: 84px;
  margin-top: 42px;
  padding: 0 18px 0 0;
  display: grid;
  grid-template-columns: 84px 1fr 52px;
  align-items: center;
  text-align: left;
  background: var(--ink);
  color: white;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.hero-search:hover, .hero-search:focus-visible {
  background: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 18px 0 rgba(23,39,245,.13);
}
.hero-search-icon { height: 84px; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.22); }
.hero-search-icon svg { width: 24px; height: 24px; }
.hero-search-copy { display: flex; flex-direction: column; padding: 0 22px; }
.hero-search-copy strong { font-size: 1rem; }
.hero-search-copy small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: .73rem; }
.hero-search-arrow { justify-self: end; width: 48px; height: 48px; display: grid; place-items: center; background: var(--red); }
.hero-search-arrow svg { width: 22px; height: 22px; }
.hero-stats { margin-top: 38px; display: flex; gap: clamp(26px, 4vw, 64px); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.35rem; font-weight: 800; letter-spacing: -.04em; }
.hero-stats span { margin-top: 2px; color: #74767b; font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.hero-art { position: relative; align-self: stretch; min-height: 640px; }
.hero-blue-panel {
  position: absolute;
  top: 5%;
  right: -18%;
  bottom: 3%;
  left: 12%;
  background: var(--blue);
}
.hero-blue-panel::before {
  content: '';
  position: absolute;
  top: 42px;
  right: 42px;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 999px;
}
.hero-cover {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 0;
  width: min(64%, 410px);
  box-shadow: 34px 38px 0 rgba(0,0,0,.16);
  transform: rotate(-2.1deg);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.hero-cover:hover, .hero-cover:focus-visible { transform: rotate(0) translateY(-12px); box-shadow: 26px 50px 0 rgba(0,0,0,.12); }
.hero-cover img { width: 100%; height: auto; aspect-ratio: 1200/1703; object-fit: cover; }
.hero-issue-label {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 1%;
  color: white;
  font-size: clamp(1rem, 1.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: .9;
  transform: rotate(90deg) translateX(100%);
  transform-origin: top right;
}
.latest-action {
  position: absolute;
  z-index: 5;
  right: -2%;
  bottom: 10%;
  width: min(75%, 390px);
  min-height: 92px;
  padding: 20px 18px 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--red);
  color: white;
  transition: transform .25s ease, background .25s ease;
}
.latest-action:hover, .latest-action:focus-visible { transform: translateX(-8px); background: var(--ink); }
.latest-action span { display: flex; flex-direction: column; }
.latest-action small { font-size: .61rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.latest-action strong { margin-top: 5px; font-family: Newsreader, Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.latest-action svg { width: 27px; height: 27px; }
.hero-number {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: -5%;
  color: rgba(255,255,255,.15);
  font-size: clamp(11rem, 19vw, 22rem);
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: .72;
}

.print-strip { background: var(--ink); color: white; }
.print-strip-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px var(--pad);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.print-badge { padding: 7px 10px; background: var(--red); font-size: .62rem; font-weight: 800; letter-spacing: .13em; }
.print-strip p { margin: 0; color: rgba(255,255,255,.69); font-size: .8rem; line-height: 1.6; }
.print-strip p strong { color: white; }
.print-strip a { display: inline-flex; align-items: center; gap: 12px; font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.print-strip a svg { width: 18px; height: 18px; transition: transform .2s ease; }
.print-strip a:hover svg { transform: translateX(5px); }

.archive-section {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 150px) var(--pad) clamp(90px, 11vw, 180px);
}
.archive-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 60px; align-items: end; }
.section-index { margin: 0 0 18px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-index-light { color: rgba(255,255,255,.55); }
.archive-head h2, .about-copy h2, .search-invitation h2, .advertise-section h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7.2vw, 8rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .88;
}
.archive-intro { margin: 0; color: #65676c; font-family: Newsreader, Georgia, serif; font-size: 1.3rem; line-height: 1.45; }

.archive-toolbar {
  position: sticky;
  z-index: 30;
  top: 75px;
  margin-top: 58px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.94);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(16px);
}
.filter-scroll { display: flex; gap: 8px; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-pill { flex: 0 0 auto; min-height: 40px; padding: 0 15px; border: 1px solid #bfc1c6; background: white; font-size: .71rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.filter-pill span { margin-left: 7px; color: #85878b; font-size: .63rem; }
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.is-active { background: var(--blue); border-color: var(--blue); color: white; }
.filter-pill.is-active span { color: rgba(255,255,255,.66); }
.toolbar-actions { display: flex; align-items: center; gap: 10px; }
.sort-control { position: relative; height: 40px; display: flex; align-items: center; border: 1px solid #bfc1c6; }
.sort-control > span { padding-left: 13px; color: #85878b; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sort-control select { height: 100%; padding: 0 34px 0 8px; border: 0; outline: 0; background: transparent; appearance: none; font-size: .7rem; font-weight: 800; cursor: pointer; }
.sort-control svg { position: absolute; right: 10px; width: 14px; height: 14px; pointer-events: none; }
.view-switch { height: 40px; display: flex; border: 1px solid #bfc1c6; }
.view-switch button { width: 42px; display: grid; place-items: center; color: #74767b; cursor: pointer; }
.view-switch button + button { border-left: 1px solid #bfc1c6; }
.view-switch button.is-active { background: var(--ink); color: white; }
.view-switch svg { width: 17px; height: 17px; }

.issue-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(38px, 4vw, 72px) clamp(18px, 2.3vw, 36px);
}
.issue-card[hidden] { display: none; }
.issue-cover-link { position: relative; display: block; background: #ebecef; overflow: hidden; }
.issue-cover-link picture { display: block; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.issue-cover-link img { width: 100%; height: auto; aspect-ratio: 1200/1703; object-fit: cover; transition: filter .5s ease; }

.issue-hover-action {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 62px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: white;
  transform: translateY(102%);
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
}
.issue-hover-action span { font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.issue-hover-action svg { width: 22px; height: 22px; }
.issue-cover-link:hover picture, .issue-cover-link:focus-visible picture { transform: scale(1.035); }
.issue-cover-link:hover img, .issue-cover-link:focus-visible img { filter: saturate(1.06) contrast(1.02); }
.issue-cover-link:hover .issue-hover-action, .issue-cover-link:focus-visible .issue-hover-action { transform: translateY(0); }
.issue-details { padding-top: 18px; }
.issue-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.issue-title-row p { margin: 0 0 4px; color: #85878b; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.issue-title-row h3 { margin: 0; font-family: Newsreader, Georgia, serif; font-size: clamp(1.35rem, 1.8vw, 1.8rem); font-weight: 500; line-height: 1.1; }
.issue-title-row > a { flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--ink); transition: .2s ease; }
.issue-title-row > a:hover, .issue-title-row > a:focus-visible { background: var(--red); border-color: var(--red); color: white; }
.issue-title-row svg { width: 17px; height: 17px; }
.issue-topics { margin: 12px 0 0; color: #77797e; font-size: .72rem; line-height: 1.5; text-transform: capitalize; }
.issue-topics span { margin: 0 5px; color: var(--red); }

.issue-grid[data-view="list"] { display: block; margin-top: 30px; }
.issue-grid[data-view="list"] .issue-card { min-height: 190px; padding: 22px 0; display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 28px; border-bottom: 1px solid var(--line); }
.issue-grid[data-view="list"] .issue-card:first-child { border-top: 1px solid var(--line); }
.issue-grid[data-view="list"] .issue-cover-link { width: 104px; }
.issue-grid[data-view="list"] .issue-hover-action { display: none; }
.issue-grid[data-view="list"] .issue-details { padding: 12px 0 0; align-self: center; }
.issue-grid[data-view="list"] .issue-title-row h3 { font-size: clamp(1.8rem, 3.2vw, 3.2rem); }
.issue-grid[data-view="list"] .issue-topics { font-size: .8rem; }
.filter-empty { padding: 80px 0; color: #77797e; text-align: center; }

.search-invitation { background: var(--blue); color: white; overflow: hidden; }
.search-invitation-inner { width: min(100%, var(--container)); margin: 0 auto; padding: clamp(76px, 9vw, 150px) var(--pad); }
.search-invitation-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr); align-items: end; gap: 70px; }
.search-invitation h2 { max-width: 1000px; }
.search-invitation-grid > div p { margin: 0; color: rgba(255,255,255,.7); font-family: Newsreader, Georgia, serif; font-size: 1.25rem; line-height: 1.5; }
.search-invitation-grid > div button { margin-top: 28px; padding: 0 18px 0 22px; min-height: 58px; display: inline-flex; align-items: center; gap: 24px; background: white; color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.search-invitation-grid > div button:hover { transform: translateY(-3px); background: var(--red); color: white; }
.search-invitation-grid > div button svg { width: 20px; height: 20px; }
.suggestion-row { margin-top: 68px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid rgba(255,255,255,.28); }
.suggestion-row button { padding: 8px 12px; border: 1px solid rgba(255,255,255,.52); color: rgba(255,255,255,.9); font-size: .68rem; font-weight: 700; cursor: pointer; transition: .2s ease; }
.suggestion-row button:hover { background: white; color: var(--blue); }

.about-section {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 190px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .72fr);
  gap: 90px;
  overflow: hidden;
}
.about-number { position: absolute; right: -2vw; bottom: -8vw; color: #f0f1f3; font-size: 31vw; font-weight: 800; letter-spacing: -.13em; line-height: .7; pointer-events: none; }
.about-copy, .about-columns { position: relative; z-index: 2; }
.about-copy h2 { max-width: 900px; }
.about-lead { max-width: 720px; margin: 38px 0 0; color: #585a60; font-family: Newsreader, Georgia, serif; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.45; }
.about-columns { align-self: end; display: grid; gap: 34px; }
.about-columns div { padding-top: 18px; border-top: 2px solid var(--ink); }
.about-columns h3 { margin: 0; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-columns p { margin: 12px 0 0; color: #686a70; font-size: .86rem; line-height: 1.75; }

.advertise-section {
  padding: clamp(76px, 9vw, 150px) max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, .72fr);
  align-items: start;
  gap: clamp(56px, 7vw, 120px);
  background: var(--red);
  color: white;
}
.advertise-section h2 { font-size: clamp(3.2rem, 6.6vw, 7.4rem); }
.advertise-copy { position: sticky; top: 118px; }
.advertise-lead { max-width: 690px; margin: 36px 0 0; color: rgba(255,255,255,.78); font-family: Newsreader, Georgia, serif; font-size: clamp(1.18rem, 1.7vw, 1.55rem); line-height: 1.5; }
.advertise-benefits { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px; }
.advertise-benefits span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.56); font-size: .62rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }

.advertising-form { position: relative; padding: clamp(26px, 3vw, 46px); background: white; color: var(--ink); box-shadow: 20px 24px 0 rgba(17,17,17,.16); }
.advertising-form-head { padding-bottom: 28px; border-bottom: 2px solid var(--ink); }
.advertising-form-head p { margin: 0 0 12px; color: var(--blue); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.advertising-form-head h3 { margin: 0; font-size: clamp(2rem, 3.2vw, 3.35rem); font-weight: 800; letter-spacing: -.055em; line-height: .98; }
.advertising-form-head > span { display: block; margin-top: 15px; color: #74767b; font-family: Newsreader, Georgia, serif; font-size: 1.02rem; }
.form-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 8px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-field label span { color: var(--red); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid #cfd1d6;
  border-radius: 0;
  background: #f8f8f9;
  color: var(--ink);
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form-field input, .form-field select { min-height: 52px; padding: 0 14px; }
.form-field textarea { min-height: 138px; padding: 13px 14px; line-height: 1.55; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #999ca3; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(23,39,245,.12); }
.form-field [aria-invalid="true"] { border-color: #d83220; background: #fff8f7; }
.form-field textarea::placeholder { color: #8c8e94; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 48px; appearance: none; cursor: pointer; }
.select-wrap svg { position: absolute; top: 50%; right: 15px; width: 18px; height: 18px; pointer-events: none; transform: translateY(-50%); }
.field-error { display: block; margin-top: 7px; color: #bb2819; font-size: .68rem; font-weight: 700; line-height: 1.4; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.privacy-check { margin-top: 23px; display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 11px; color: #64666c; font-size: .72rem; line-height: 1.55; cursor: pointer; }
.privacy-check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.privacy-error { margin-left: 31px; }
.advertising-form-footer { margin-top: 28px; padding-top: 23px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid #dadce0; }
.advertising-form-footer button { min-height: 58px; padding: 0 18px 0 21px; display: inline-flex; align-items: center; gap: 26px; background: var(--ink); color: white; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.advertising-form-footer button:hover { transform: translateY(-3px); background: var(--blue); }
.advertising-form-footer button:disabled { cursor: wait; opacity: .72; transform: none; }
.advertising-form-footer button svg { width: 20px; height: 20px; }
.advertising-form-footer p { max-width: 210px; margin: 0; color: #85878c; font-size: .62rem; line-height: 1.55; text-align: right; }
.advertising-email-fallback { margin: 19px 0 0; color: #85878c; font-size: .68rem; }
.advertising-email-fallback a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.advertising-email-fallback a:hover { color: var(--blue); }
.form-notice { margin-top: 22px; padding: 15px 16px; display: grid; grid-template-columns: 25px minmax(0, 1fr); gap: 12px; border: 1px solid; }
.form-notice svg { width: 23px; height: 23px; }
.form-notice div { display: grid; gap: 3px; }
.form-notice strong { font-size: .75rem; }
.form-notice span { font-size: .68rem; line-height: 1.45; }
.form-notice-success { border-color: #168c54; background: #effbf5; color: #10693f; }
.form-notice-error { border-color: #d54a39; background: #fff5f3; color: #a6291b; }
.form-reset-link { margin-top: 24px; min-height: 52px; padding: 0 17px; display: inline-flex; align-items: center; gap: 22px; background: var(--ink); color: white; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-reset-link:hover { background: var(--blue); }
.form-reset-link svg { width: 18px; height: 18px; }

/* Footer: a useful final destination rather than a copyright afterthought. */
.footer {
  padding: 0 max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad))) 28px;
  background: var(--ink);
  color: white;
}
.footer-return {
  min-height: 210px;
  padding: 44px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-return p { margin: 0 0 9px; color: var(--red); font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-return h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 6rem); font-weight: 800; letter-spacing: -.07em; line-height: .92; }
.footer-top-button {
  flex: 0 0 auto;
  min-width: 180px;
  min-height: 64px;
  padding: 0 17px 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: white;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.footer-top-button:hover, .footer-top-button:focus-visible { transform: translateY(-4px); background: var(--red); color: white; }
.footer-top-button svg { width: 21px; height: 21px; }
.footer-main {
  padding: 64px 0 70px;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) minmax(170px, .55fr) minmax(240px, .75fr);
  gap: clamp(48px, 8vw, 130px);
}
.footer-intro { max-width: 590px; }
.footer-brand { color: white; }
.footer-brand span { font-size: clamp(2.5rem, 4.7vw, 5.1rem); }
.footer-brand em { font-size: clamp(2rem, 4vw, 4.3rem); }
.footer-intro > p { max-width: 520px; margin: 28px 0 15px; color: rgba(255,255,255,.72); font-family: Newsreader, Georgia, serif; font-size: clamp(1.1rem, 1.7vw, 1.45rem); line-height: 1.5; }
.footer-intro > span { color: rgba(255,255,255,.42); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column > p { margin: 3px 0 11px; color: rgba(255,255,255,.4); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column button { position: relative; padding: 0 0 4px; color: white; font-size: .78rem; font-weight: 700; text-align: left; cursor: pointer; }
.footer-column a::after, .footer-column button::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.footer-column a:hover::after, .footer-column a:focus-visible::after, .footer-column button:hover::after, .footer-column button:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.footer-contact > span { max-width: 260px; margin-top: 12px; color: rgba(255,255,255,.43); font-size: .66rem; line-height: 1.65; }
.footer-bottom {
  min-height: 58px;
  padding-top: 19px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.4);
}
.footer-bottom p { margin: 0; font-size: .61rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.footer-bottom button { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.footer-bottom button:hover { color: white; }
.footer-bottom button span { color: var(--red); font-size: .9rem; }
.back-to-top {
  position: fixed;
  z-index: 85;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  gap: 1px;
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, background .2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--red); }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top span { font-size: .52rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mobile-search-dock { display: none; }

.search-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: white;
  color: var(--ink);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .25s ease, display .25s allow-discrete, overlay .25s allow-discrete;
}
.search-dialog[open] { opacity: 1; transform: translateY(0); }
@starting-style { .search-dialog[open] { opacity: 0; transform: translateY(15px); } }
.search-dialog::backdrop { background: rgba(10,10,10,.7); backdrop-filter: blur(8px); }
.search-dialog-shell { min-height: 100%; display: grid; grid-template-rows: 76px minmax(0, 1fr) 46px; }
.search-dialog-head {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.search-dialog-head > p { margin: 0; font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dialog-close { justify-self: end; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--ink); cursor: pointer; transition: .2s ease; }
.dialog-close:hover { background: var(--red); border-color: var(--red); color: white; }
.dialog-close svg { width: 20px; height: 20px; }
.search-dialog-body { width: min(100%, 1120px); margin: 0 auto; padding: clamp(42px, 6vw, 86px) var(--pad) 80px; overflow-y: auto; }
.dialog-search-form > label { display: block; margin-bottom: 18px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.dialog-search-field { position: relative; display: grid; grid-template-columns: 54px minmax(0, 1fr) 54px; align-items: center; border-bottom: 3px solid var(--ink); }
.dialog-search-field > svg { width: 31px; height: 31px; }
.dialog-search-field input { width: 100%; min-width: 0; height: 88px; padding: 0 10px; border: 0; outline: 0; background: transparent; color: var(--ink); font-family: Newsreader, Georgia, serif; font-size: clamp(2rem, 5vw, 4.7rem); line-height: 1; }
.dialog-search-field input::placeholder { color: #b1b2b6; }
.dialog-search-field button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #b7b9bd; cursor: pointer; }
.dialog-search-field button svg { width: 17px; height: 17px; }
.search-guidance { margin-top: 13px; display: flex; justify-content: space-between; gap: 24px; color: #818389; font-size: .68rem; }
.search-empty-state { min-height: 300px; padding-top: 72px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 40px; }
.empty-kicker { margin: 0 0 17px; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.empty-suggestions { display: flex; flex-wrap: wrap; gap: 9px; }
.empty-suggestions button { padding: 10px 14px; border: 1px solid #b9bbc0; font-size: .72rem; font-weight: 700; cursor: pointer; }
.empty-suggestions button:hover { background: var(--blue); border-color: var(--blue); color: white; }
.empty-note { max-width: 240px; margin: 0; color: #888a8f; font-family: Newsreader, Georgia, serif; font-size: 1rem; line-height: 1.5; }
.search-loading { min-height: 220px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.search-loading span { width: 11px; height: 11px; background: var(--blue); border-radius: 50%; animation: bounce .7s infinite alternate; }
.search-loading span:nth-child(2) { animation-delay: .14s; background: var(--red); }
.search-loading span:nth-child(3) { animation-delay: .28s; background: var(--ink); }
@keyframes bounce { to { transform: translateY(-13px); } }
.search-results { margin-top: 44px; }
.result-group { border-top: 1px solid var(--ink); }
.result-group + .result-group { margin-top: 42px; }
.result-group-header { padding: 17px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.result-group-title { display: flex; align-items: baseline; gap: 12px; }
.result-group-title span { color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.result-group-title h3 { margin: 0; font-family: Newsreader, Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.result-count { padding: 5px 9px; background: var(--mist); color: #686a6f; font-size: .62rem; font-weight: 800; }
.result-row { padding: 17px 0; display: grid; grid-template-columns: 72px minmax(0, 1fr) 42px; align-items: center; gap: 20px; border-top: 1px solid var(--line); transition: background .18s ease, padding .18s ease; }
.result-row:hover, .result-row:focus-visible, .result-row.is-keyboard-active { padding-right: 14px; padding-left: 14px; background: var(--mist); outline: none; }
.result-page { font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.result-snippet { color: #55575c; font-size: .82rem; line-height: 1.65; }
.result-snippet mark { padding: 1px 2px; background: #ffe0d9; color: var(--ink); }
.result-open { width: 38px; height: 38px; display: grid; place-items: center; background: var(--blue); color: white; }
.result-open svg { width: 18px; height: 18px; }
.search-no-results { padding: 80px 0; text-align: center; }
.search-no-results > span { color: var(--blue); font-size: clamp(8rem, 20vw, 15rem); font-weight: 800; letter-spacing: -.12em; line-height: .7; }
.search-no-results h2 { margin: 25px 0 0; font-family: Newsreader, Georgia, serif; font-size: 3rem; font-weight: 500; }
.search-no-results p { margin: 8px 0 0; color: #77797e; }
.search-dialog-footer { padding: 0 var(--pad); display: flex; align-items: center; justify-content: center; gap: 25px; border-top: 1px solid var(--line); color: #77797e; font-size: .61rem; }
.search-dialog-footer span { display: inline-flex; align-items: center; gap: 5px; }
.search-dialog-footer kbd { min-width: 22px; padding: 2px 5px; border: 1px solid #b5b7bc; color: var(--ink); font-family: inherit; text-align: center; }
.toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; padding: 15px 14px 15px 18px; display: flex; align-items: center; gap: 18px; background: var(--ink); color: white; font-size: .75rem; box-shadow: 0 15px 45px rgba(0,0,0,.22); }
.toast button { color: white; cursor: pointer; }

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

@media (max-width: 1180px) {
  .topbar-inner { grid-template-columns: auto auto 1fr; }
  .desktop-nav { display: none; }
  .search-trigger { justify-self: end; }
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .7fr); gap: 50px; }
  .hero-art { min-height: 560px; }
  .issue-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 68px; }
  .topbar-inner { height: 68px; grid-template-columns: 1fr auto; }
  .archive-label, .search-trigger span, .search-trigger kbd { display: none; }
  .search-trigger { width: 42px; height: 42px; padding: 0; justify-content: center; }
  .hero { min-height: auto; }
  .hero-inner { min-height: 0; padding-top: 54px; grid-template-columns: 1fr; gap: 58px; }
  .hero h1 { font-size: clamp(4.2rem, 14vw, 7rem); }
  .hero-art { min-height: min(680px, 92vw); }
  .hero-blue-panel { right: -8%; left: 16%; }
  .hero-cover { left: 8%; width: min(58%, 390px); }
  .latest-action { right: 3%; width: min(58%, 370px); }
  .print-strip-inner { grid-template-columns: auto 1fr; }
  .print-strip a { grid-column: 2; }
  .archive-head { grid-template-columns: 1fr; gap: 28px; }
  .archive-intro { max-width: 560px; }
  .archive-toolbar { top: 67px; }
  .issue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 22px; }
  .search-invitation-grid { grid-template-columns: 1fr; gap: 36px; }
  .search-invitation h2 { font-size: clamp(3.5rem, 11vw, 6rem); }
  .about-section, .advertise-section { grid-template-columns: 1fr; gap: 52px; }
  .advertise-copy { position: static; }
  .advertising-form { width: min(100%, 760px); }
  .about-columns { max-width: 620px; }
  .footer-main { grid-template-columns: minmax(280px, 1.25fr) 1fr 1fr; gap: 46px; }
}

@media (max-width: 640px) {
  :root { --pad: 16px; }
  body { padding-bottom: 70px; }
  .topbar-inner { padding: 0 16px; }
  .logo span { font-size: 1.05rem; }
  .logo em { font-size: .98rem; }
  .hero-inner { padding: 40px 16px 48px; gap: 46px; }
  .hero-kicker { margin-bottom: 24px; align-items: flex-start; font-size: .61rem; line-height: 1.45; }
  .hero-kicker span { flex: 0 0 24px; margin-top: 5px; }
  .hero h1 { font-size: clamp(3.55rem, 18.2vw, 5.2rem); line-height: .84; }
  .hero-intro { margin-top: 28px; font-size: .98rem; line-height: 1.6; }
  .hero-search { min-height: 72px; margin-top: 30px; grid-template-columns: 64px 1fr 43px; }
  .hero-search-icon { height: 72px; }
  .hero-search-copy { padding: 0 15px; }
  .hero-search-copy strong { font-size: .86rem; }
  .hero-search-copy small { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .64rem; }
  .hero-search-arrow { width: 40px; height: 40px; }
  .hero-stats { margin-top: 28px; justify-content: space-between; gap: 12px; }
  .hero-stats strong { font-size: 1.1rem; }
  .hero-stats span { max-width: 80px; font-size: .56rem; line-height: 1.35; }
  .hero-art { min-height: 117vw; }
  .hero-blue-panel { top: 4%; right: -16px; bottom: 2%; left: 17%; }
  .hero-blue-panel::before { top: 20px; right: 20px; width: 48px; height: 48px; }
  .hero-cover { top: 8%; left: 2%; width: 67%; box-shadow: 19px 22px 0 rgba(0,0,0,.16); }
  .hero-issue-label { top: 9%; right: 2%; font-size: .9rem; }
  .latest-action { right: 0; bottom: 8%; width: 72%; min-height: 76px; padding: 14px 14px 14px 18px; }
  .latest-action strong { font-size: 1.25rem; }
  .hero-number { right: 0; bottom: -1%; font-size: 43vw; }
  .print-strip-inner { padding: 20px 16px; grid-template-columns: 1fr; gap: 12px; }
  .print-badge { justify-self: start; }
  .print-strip p { font-size: .72rem; }
  .print-strip a { grid-column: 1; margin-top: 3px; }
  .archive-section { padding: 78px 16px 105px; }
  .archive-head h2 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .archive-intro { font-size: 1.08rem; }
  .archive-toolbar { top: 67px; margin: 38px -16px 0; padding: 11px 16px; align-items: stretch; flex-direction: column; gap: 10px; }
  .filter-scroll { margin-right: -16px; padding-right: 16px; }
  .toolbar-actions { justify-content: space-between; }
  .sort-control { flex: 1; }
  .sort-control select { flex: 1; }
  .issue-grid { margin-top: 30px; gap: 38px 13px; }
  .issue-hover-action { display: none; }
  .issue-details { padding-top: 12px; }
  .issue-title-row p { font-size: .54rem; }
  .issue-title-row h3 { font-size: 1.13rem; }
  .issue-title-row > a { display: none; }
  .issue-topics { margin-top: 8px; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: .62rem; }
  .issue-grid[data-view="list"] .issue-card { min-height: 150px; grid-template-columns: 82px minmax(0, 1fr); gap: 18px; }
  .issue-grid[data-view="list"] .issue-cover-link { width: 82px; }
  .issue-grid[data-view="list"] .issue-title-row h3 { font-size: 1.75rem; }
  .search-invitation-inner { padding: 78px 16px; }
  .search-invitation h2 { font-size: clamp(3.2rem, 15.5vw, 5rem); }
  .search-invitation-grid > div p { font-size: 1.05rem; }
  .suggestion-row { margin-top: 45px; }
  .about-section { padding: 88px 16px 105px; }
  .about-copy h2 { font-size: clamp(3.1rem, 15.5vw, 5rem); }
  .about-lead { margin-top: 28px; font-size: 1.22rem; }
  .advertise-section { padding: 78px 16px; }
  .advertise-section h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .advertise-lead { margin-top: 26px; font-size: 1.08rem; }
  .advertise-benefits { margin-top: 28px; }
  .advertising-form { padding: 24px 18px; box-shadow: 10px 12px 0 rgba(17,17,17,.16); }
  .advertising-form-head { padding-bottom: 22px; }
  .advertising-form-head h3 { font-size: clamp(2rem, 10vw, 3rem); }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-field-wide { grid-column: auto; }
  .advertising-form-footer { align-items: stretch; flex-direction: column; }
  .advertising-form-footer button { width: 100%; justify-content: space-between; }
  .advertising-form-footer p { max-width: none; text-align: left; }
  .footer { padding: 0 16px calc(24px + env(safe-area-inset-bottom)); }
  .footer-return { min-height: 0; padding: 54px 0 44px; align-items: stretch; flex-direction: column; gap: 30px; }
  .footer-return h2 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .footer-top-button { width: 100%; min-height: 58px; }
  .footer-main { padding: 48px 0 52px; grid-template-columns: 1fr; gap: 42px; }
  .footer-brand span { font-size: 2.65rem; }
  .footer-brand em { font-size: 2.3rem; }
  .footer-intro > p { margin-top: 24px; font-size: 1.1rem; }
  .footer-column { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); }
  .footer-bottom { padding: 22px 0 4px; grid-template-columns: 1fr auto; gap: 12px; }
  .footer-bottom p:nth-child(2) { display: none; }
  .back-to-top { right: 12px; bottom: calc(76px + env(safe-area-inset-bottom)); width: 52px; height: 52px; }
  .mobile-search-dock {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    display: block;
    background: rgba(255,255,255,.92);
    border-top: 1px solid rgba(17,17,17,.15);
    backdrop-filter: blur(18px);
    transition: transform .24s ease, opacity .24s ease;
  }
  .mobile-search-dock.is-hidden { opacity: 0; transform: translateY(110%); pointer-events: none; }
  .mobile-search-dock button { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--ink); color: white; font-size: .72rem; font-weight: 800; }
  .mobile-search-dock svg { width: 18px; height: 18px; }
  .search-dialog-shell { grid-template-rows: 64px minmax(0,1fr); }
  .search-dialog-head { padding: 0 16px; grid-template-columns: 1fr auto; }
  .search-dialog-head > p { display: none; }
  .search-dialog-body { padding: 34px 16px 70px; }
  .dialog-search-form > label { margin-bottom: 12px; }
  .dialog-search-field { grid-template-columns: 38px minmax(0,1fr) 42px; border-bottom-width: 2px; }
  .dialog-search-field > svg { width: 23px; height: 23px; }
  .dialog-search-field input { height: 68px; font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .search-guidance { display: block; font-size: .62rem; }
  .search-guidance span:last-child { display: none; }
  .search-empty-state { min-height: 250px; padding-top: 45px; grid-template-columns: 1fr; }
  .empty-note { display: none; }
  .search-results { margin-top: 34px; }
  .result-group-title { align-items: flex-start; flex-direction: column; gap: 3px; }
  .result-group-title h3 { font-size: 1.4rem; }
  .result-row { grid-template-columns: 54px minmax(0,1fr) 34px; gap: 10px; }
  .result-snippet { font-size: .73rem; line-height: 1.55; }
  .result-open { width: 32px; height: 32px; }
  .search-dialog-footer { display: none; }
}

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

.topbar:focus { outline: none; }
