:root {
  --ink: #14120f;
  --muted: #5f5a52;
  --faint: #918a80;
  --paper: #f7f2e9;
  --paper-alt: #eee6da;
  --rule: #221f1a;
  --hair: rgba(20, 18, 15, .18);
  --red: #a9362b;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.wrap,
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.grid {
  display: grid;
}

.mono {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.red,
.text-link {
  color: var(--red);
}

.text-link {
  border-bottom: 1px solid currentColor;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 9px 12px;
}

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

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: var(--red);
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 233, .96);
  border-bottom: 3px double var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.logo-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--red);
}

.login-trigger,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  cursor: pointer;
}

.login-trigger:hover,
.btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

section {
  display: none;
}

.active-section {
  display: block;
}

.masthead {
  position: relative;
  padding: 44px 24px 30px;
  text-align: center;
  border-bottom: 3px double var(--rule);
}

.masthead-est {
  position: absolute;
  top: 18px;
  left: 24px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: .2em;
}

.masthead-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.masthead-logo {
  width: clamp(42px, 7vw, 86px);
  height: clamp(42px, 7vw, 86px);
  object-fit: contain;
}

.masthead h1 {
  font: 900 clamp(42px, 9vw, 116px)/.9 "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tagline {
  margin-top: 12px;
  color: var(--muted);
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--red);
}

.status {
  color: var(--muted);
}

.ui-icon {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: currentColor;
  vertical-align: -.16em;
}

.ui-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-edition {
  padding: 24px;
  border-bottom: 3px double var(--rule);
}

.edition-label {
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.edition-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 250px;
  grid-template-areas: "rail lead reel";
  gap: 24px;
  align-items: start;
}

.edition-lead {
  grid-area: lead;
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
}

.edition-rail {
  grid-area: rail;
}

.edition-reel {
  grid-area: reel;
}

.front-kicker,
.side-title,
.lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.front-kicker {
  justify-content: center;
}

.edition-lead h2 {
  max-width: 11ch;
  margin: 14px auto 12px;
  font: 900 clamp(40px, 6vw, 68px)/.92 "Playfair Display", Georgia, serif;
}

.lead-dek {
  max-width: 58ch;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
}

.lead-thumb,
.home-thumb,
.row-thumb,
.tile-art,
.related-thumb,
.front-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-alt);
  border: 1px solid var(--hair);
}

.lead-thumb,
.front-video-thumb,
.tile-art,
.row-thumb {
  aspect-ratio: 16 / 9;
}

.lead-thumb {
  margin: 18px 0;
}

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

.lead-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
  padding-top: 15px;
  border-top: 1px solid var(--hair);
}

.lead-preview p,
.front-brief p,
.front-video-card p,
.home-item p,
.card p,
.row p,
.value p,
.note {
  color: var(--muted);
}

.lead-read {
  margin-top: 16px;
}

.front-brief {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--hair);
}

.front-brief h3,
.front-video-card h3 {
  margin: 6px 0;
  font: 700 20px/1.08 "Playfair Display", Georgia, serif;
}

.front-video-card {
  display: block;
  padding-top: 13px;
}

.front-video-thumb {
  margin-bottom: 10px;
}

.front-video-thumb span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(0, 0, 0, .14);
}

.front-video-link,
.home-actions {
  display: none;
}

.home-lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 28px 24px 42px;
  border-bottom: 3px double var(--rule);
}

.home-list {
  display: grid;
}

.home-item {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}

.home-media-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}

.home-thumb {
  aspect-ratio: 4 / 3;
}

.home-item h3 {
  margin: 6px 0;
  font: 700 27px/1.08 "Playfair Display", Georgia, serif;
}

.break {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px 12px;
  border-bottom: 1px solid var(--rule);
}

.break::before,
.break::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--rule);
}

.cards,
.values,
.related-grid,
.article-grid-view {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards {
  border-bottom: 3px double var(--rule);
}

.card,
.value,
.article-tile,
.related-card,
.team-card {
  display: block;
  padding: 24px;
  background: transparent;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.card h3,
.tile-copy h3,
.related-copy h3 {
  margin: 10px 0;
  font: 700 28px/1.08 "Playfair Display", Georgia, serif;
}

.card:hover h3,
.row:hover h3,
.home-item:hover h3,
.front-brief:hover h3,
.front-video-card:hover h3,
.related-card:hover h3 {
  color: var(--red);
}

.byline,
.date,
.article-meta,
.tile-meta,
.tile-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--faint);
}

.read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--red);
}

.page,
.article,
.archive-page {
  padding: 38px 24px 64px;
}

.page h2,
.archive-head h2 {
  font: 900 clamp(44px, 7vw, 88px)/.92 "Playfair Display", Georgia, serif;
}

.subtitle,
.archive-head {
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 3px double var(--rule);
}

.archive-head {
  text-align: center;
}

.archive-head p {
  max-width: 62ch;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 20px;
  font-style: italic;
}

.archive-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  margin-bottom: 18px;
}

.archive-search,
.archive-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--rule);
  background: transparent;
  padding: 11px 12px;
}

.archive-search input,
.archive-sort select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.archive-sort select {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filters,
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}

.filter-btn {
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.archive-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--faint);
}

.view-toggle {
  display: flex;
  border: 1px solid var(--rule);
}

.view-toggle button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 38px;
  border: 0;
  border-right: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.view-toggle button:last-child {
  border-right: 0;
}

.view-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

#articleList,
#pressList {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
}

.article-row-with-thumb {
  grid-template-columns: 210px 1fr auto;
}

.row h3,
.press-row h3 {
  margin-bottom: 8px;
  font: 700 30px/1.08 "Playfair Display", Georgia, serif;
}

.article-row-tag {
  align-self: start;
  width: fit-content;
}

.article-grid-view,
.press-grid-view {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 0;
}

.article-tile {
  min-height: 0;
  border: 1px solid var(--hair);
}

.tile-art {
  margin: -24px -24px 18px;
  border: 0;
  border-bottom: 1px solid var(--hair);
}

.tile-art span {
  display: none;
}

.tile-copy {
  display: grid;
  gap: 10px;
}

.tile-meta {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  justify-content: space-between;
}

.article {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 42px 28px 72px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  color: var(--red);
  text-decoration: none;
}

.article-head {
  max-width: 920px;
  padding-bottom: 26px;
  margin: 0 auto 34px;
  text-align: center;
  border-top: 3px double var(--rule);
  border-bottom: 3px double var(--rule);
}

.article-meta {
  justify-content: center;
  gap: 8px 14px;
  padding: 15px 0 12px;
}

.article-meta .tag,
.article-meta .status {
  margin-right: 0;
}

.article h1 {
  max-width: 16ch;
  margin: 6px auto 14px;
  font: 900 clamp(46px, 6vw, 72px)/.92 "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

.article-head.medium-title h1 {
  max-width: 24ch;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: .96;
}

.article-head.long-title h1 {
  max-width: 30ch;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.02;
}

.dek {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.82;
}

.body p {
  margin-bottom: 22px;
}

.body h3 {
  margin: 38px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
  font: 700 30px/1.12 "Playfair Display", Georgia, serif;
}

.body blockquote,
.quote {
  margin: 34px 0;
  padding: 18px 0 18px 22px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  border-left: 4px solid var(--red);
  color: var(--red);
  font: italic 28px/1.32 "Playfair Display", Georgia, serif;
}

.article .body > p:first-of-type::first-letter {
  float: left;
  padding: 9px 10px 0 0;
  color: var(--red);
  font: 900 76px/.75 "Playfair Display", Georgia, serif;
}

.press-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--rule);
  background: var(--ink);
}

.about {
  grid-template-columns: .8fr 1.2fr;
  border-bottom: 3px double var(--rule);
}

.about-left,
.about-text {
  padding: 42px 24px;
}

.about-left {
  border-right: 1px solid var(--hair);
}

.about-left h2,
.team-intro h2 {
  margin: 14px 0;
  font: italic 900 clamp(54px, 8vw, 96px)/.88 "Playfair Display", Georgia, serif;
}

.about-text p {
  max-width: 70ch;
  margin-top: 18px;
}

.lede {
  font: 700 clamp(28px, 4vw, 42px)/1.1 "Playfair Display", Georgia, serif;
}

.values {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 26px 0 42px;
  border-bottom: 3px double var(--rule);
}

.value {
  padding: 34px;
  border: 1px solid var(--hair);
  background: transparent;
}

.value:last-child {
  border-right: 1px solid var(--hair);
}

.num {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 36px;
}

.value h3 {
  margin-bottom: 10px;
  font: 700 20px/1.15 "Playfair Display", Georgia, serif;
}

.value p {
  max-width: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.values-panel {
  display: block;
  padding: 36px 24px 46px;
  border-top: 3px double var(--rule);
  border-bottom: 3px double var(--rule);
}

.values-heading {
  display: grid;
  grid-template-columns: 170px minmax(220px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.values-heading h2 {
  font: 900 clamp(38px, 5vw, 62px)/.95 "Playfair Display", Georgia, serif;
}

.values-heading p {
  max-width: 42ch;
  color: var(--muted);
  font-size: 18px;
  font-style: italic;
}

.values-list {
  display: grid;
}

.value-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--hair);
}

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

.value-row h3 {
  font: 700 30px/1.05 "Playfair Display", Georgia, serif;
}

.value-row p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.ai-policy {
  display: block;
  padding: 38px 24px 46px;
  border-top: 3px double var(--rule);
  border-bottom: 3px double var(--rule);
}

.policy-kicker {
  padding: 0 0 12px;
  border-bottom: 1px solid var(--rule);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 34px;
  padding-top: 28px;
}

.policy-grid h2 {
  max-width: 7.5ch;
  overflow-wrap: break-word;
  font: 900 clamp(40px, 5.6vw, 72px)/.92 "Playfair Display", Georgia, serif;
  text-transform: uppercase;
}

.policy-copy {
  max-width: 760px;
  columns: 2 260px;
  column-gap: 34px;
  column-rule: 1px solid var(--hair);
}

.policy-copy p,
.policy-list li {
  break-inside: avoid;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.58;
}

.policy-lede {
  font-size: 20px;
  line-height: 1.48;
}

.policy-list {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
  counter-reset: policy;
}

.policy-list li {
  position: relative;
  padding-top: 34px;
  border-top: 1px solid var(--hair);
  counter-increment: policy;
}

.policy-list li::before {
  content: "0" counter(policy);
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--red);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: .12em;
}

.about-closing-quote {
  margin: 34px auto 58px;
  padding: 34px 24px;
  border-top: 3px double var(--rule);
  border-bottom: 3px double var(--rule);
}

.about-closing-quote blockquote {
  max-width: 24ch;
  color: var(--ink);
  border: 0;
  padding: 0;
  font: 700 clamp(30px, 4vw, 48px)/1.12 "Playfair Display", Georgia, serif;
}

.quote-mark {
  color: var(--red);
  font: 900 54px/.7 "Playfair Display", Georgia, serif;
}

.team {
  padding: 0 24px 64px;
}

.team-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  padding: 38px 0 30px;
  border-bottom: 3px double var(--rule);
}

.team-copy {
  align-self: end;
  padding-left: 22px;
  border-left: 3px solid var(--red);
}

.team-copy p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.team-section {
  padding-top: 28px;
}

.team-label {
  margin-bottom: 12px;
}

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

.team-card {
  min-height: 280px;
}

.team-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 160px 1fr 280px;
  gap: 24px;
  align-items: center;
  min-height: 220px;
}

.initials,
.team-photo {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--ink);
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.team-photo {
  object-fit: cover;
  object-position: center 34%;
  filter: none;
}

.team-photo.high-crop {
  object-position: center 18%;
}

.team-photo.palak-crop {
  object-position: center 30%;
}

.team-photo.vanshika-crop {
  object-position: center 27%;
}

.team-photo.raghav-new-crop {
  object-position: center 28%;
}

.featured .initials,
.featured .team-photo {
  width: 132px;
  height: 132px;
}

.team-card h4 {
  margin: 14px 0 6px;
  font: 700 27px/1.05 "Playfair Display", Georgia, serif;
}

.featured h4 {
  margin-top: 0;
  font-size: 44px;
}

.role {
  color: var(--red);
}

.note {
  margin-top: auto;
  padding-top: 14px;
  font-size: 15px;
}

.contact {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 34px 24px 58px;
  border-bottom: 3px double var(--rule);
}

.contact > div,
.contact > form {
  min-width: 0;
}

.contact h2 {
  margin-bottom: 16px;
  font: 900 42px/1.08 "Playfair Display", Georgia, serif;
}

.contact p {
  margin-bottom: 26px;
  color: var(--muted);
}

.contact-info {
  display: grid;
  gap: 12px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  margin-bottom: 17px;
  border: 1px solid var(--hair);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--ink);
}

.form textarea {
  min-height: 122px;
  resize: vertical;
}

.form-note,
.success {
  color: var(--muted);
}

.success {
  display: none;
  margin-top: 14px;
}

.related {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 3px double var(--rule);
}

.related-grid {
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--rule);
}

.related-card {
  padding: 0;
  border-left: 1px solid var(--hair);
}

.related-thumb {
  aspect-ratio: 16 / 9;
  border: 0;
  border-bottom: 1px solid var(--hair);
}

.related-copy {
  padding: 18px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 18, 15, .62);
}

.auth-modal[hidden],
.reader-panel[hidden] {
  display: none;
}

.auth-dialog {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--paper);
  border: 3px double var(--rule);
}

.auth-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid var(--hair);
  background: var(--paper);
  color: var(--muted);
  padding: 7px 9px;
  cursor: pointer;
}

.auth-copy,
.auth-form,
.reader-panel {
  padding: 38px;
}

.auth-copy {
  border-right: 1px solid var(--hair);
}

.auth-copy h2,
.reader-panel h3 {
  margin: 12px 0;
  font: 900 42px/1 "Playfair Display", Georgia, serif;
}

.auth-copy p,
.reader-panel p {
  color: var(--muted);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  border: 1px solid var(--rule);
}

.auth-tabs button {
  border: 0;
  border-right: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
  padding: 11px;
  cursor: pointer;
}

.auth-tabs button:last-child {
  border-right: 0;
}

.auth-tabs button.active {
  background: var(--ink);
  color: var(--paper);
}

.auth-form[data-mode="login"] .create-only {
  display: none;
}

.auth-fieldset {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--hair);
}

.auth-fieldset legend {
  padding: 0 8px;
  color: var(--red);
}

.auth-fieldset label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 9px 0;
  color: var(--ink);
  font: 16px "Source Serif 4", Georgia, serif;
  letter-spacing: 0;
  text-transform: none;
}

.auth-fieldset input {
  width: auto;
  margin: 0;
}

.reader-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

footer {
  border-top: 3px double var(--rule);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 18px;
    background: var(--paper);
    border-bottom: 3px double var(--rule);
  }

  .nav-links.open {
    display: flex;
  }

  .login-trigger {
    margin-left: auto;
  }

  .menu {
    display: block;
  }

  .edition-grid,
  .home-lanes,
  .cards,
  .article-grid-view,
  .press-grid-view,
  .about,
  .team-intro,
  .contact,
  .auth-dialog,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .edition-grid {
    grid-template-areas: "lead" "rail" "reel";
  }

  .edition-lead,
  .about-left,
  .auth-copy {
    border-right: 0;
  }

  .edition-lead {
    padding: 0;
  }

  .lead-preview,
  .archive-tools,
  .row,
  .article-row-with-thumb,
  .team-card.featured,
  .policy-grid,
  .values-heading,
  .value-row {
    grid-template-columns: 1fr;
  }

  .policy-grid h2 {
    max-width: 12ch;
  }

  .row {
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .value {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .team-card,
  .card {
    border-right: 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .nav-inner,
  .masthead,
  .home-edition,
  .home-lanes,
  .page,
  .archive-page,
  .article,
  .team,
  .contact,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .masthead-title {
    gap: 10px;
  }

  .masthead h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .masthead-logo {
    width: 38px;
    height: 38px;
  }

  .edition-lead h2,
  .article h1,
  .archive-head h2 {
    font-size: 42px;
  }

  .article-head.medium-title h1,
  .article-head.long-title h1 {
    max-width: 19ch;
    font-size: 36px;
    line-height: 1;
  }

  .article {
    padding-top: 32px;
  }

  .article-head {
    margin-bottom: 26px;
  }

  .article-meta {
    font-size: 10px;
    line-height: 1.7;
  }

  .dek {
    font-size: 20px;
  }

  .body {
    font-size: 19px;
    line-height: 1.76;
  }

  .article .body > p:first-of-type::first-letter {
    font-size: 70px;
  }

  .home-media-item {
    grid-template-columns: 108px 1fr;
  }

  .auth-copy,
  .auth-form,
  .reader-panel {
    padding: 30px 22px;
  }
}
