:root {
  color-scheme: dark;
  --surface: #13111c;
  --surface-card: #181621;
  --surface-raised: #26222f;
  --surface-hover: #2d2a38;
  --surface-warm: #221f2b;
  --heading: #ffffff;
  --body: #d4d0dc;
  --body-subtle: #a8a3b0;
  --disabled-text: #7a7386;
  --border: #33313b;
  --border-medium: #3a3744;
  --border-strong: #716b7e;
  --brand-origin: #ce009a;
  --brand-strong: #ad007f;
  --brand-readable: #f25acb;
  --focus: #f25acb;
  --black: #13111a;
  --glint: rgb(255 255 255 / 0.12);
  --shadow-color: rgb(0 0 0 / 0.25);
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-base: 16px;
  --radius-default: 8px;
  --radius-small: 4px;
  --radius-full: 9999px;
  --type-ratio: 1.25;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --spring-snappy: linear(
    0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%,
    0.938 16.7%, 1.017 19.4%, 1.067 22.5%, 1.089 26%,
    1.079 30.3%, 1.049 36%, 1.024 42.6%, 1.011 50.3%,
    1.004 59.2%, 1.001 69.3%, 1
  );
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-wrap: break-word;
  background:
    radial-gradient(circle at 88% 4%, rgb(206 0 154 / 0.09), transparent 20rem),
    var(--surface);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand-readable);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  margin-block-end: 2rem;
  font-size: 2rem;
  line-height: 1;
}

h2 {
  margin-block-end: 2rem;
  font-size: 1.75rem;
  line-height: 1;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.2;
}

p {
  text-wrap: pretty;
}

.wrap {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.skip {
  position: fixed;
  z-index: 100;
  inset-block-start: 0.5rem;
  inset-inline-start: 0.5rem;
  transform: translateY(-160%);
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--brand-origin);
  border-radius: var(--radius-base);
  background: var(--brand-origin);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: var(--shadow-md), inset 0 1px var(--glint);
}

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

.site-header {
  border-block-end: 1px solid var(--border);
  background: rgb(19 17 28 / 0.96);
}

.issue-bar {
  border-block-end: 1px solid var(--border);
  background: var(--surface-card);
}

.issue-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.75rem;
  gap: 1rem;
}

.issue-bar p {
  margin: 0;
  color: var(--body-subtle);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.issue-bar p:first-child {
  color: var(--brand-readable);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 6rem;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 3.25rem;
  gap: 0.75rem;
  color: var(--heading);
  text-decoration: none;
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-default);
}

.brand span {
  display: grid;
  gap: 0.125rem;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.brand small {
  color: var(--body-subtle);
  font-size: 0.875rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding-inline: 0.875rem;
  color: var(--body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.site-nav a:hover {
  border-radius: var(--radius-default);
  background: var(--surface-raised);
  color: var(--heading);
}

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

.site-nav a[aria-current="page"]::after {
  position: absolute;
  inset-inline: 0.875rem;
  inset-block-end: 0.25rem;
  height: 0.1875rem;
  border-radius: var(--radius-full);
  background: var(--brand-origin);
  content: "";
}

.hero,
.section {
  padding-block: 1.5rem;
}

.hero {
  padding-block: clamp(1.5rem, 4vh, 3rem);
}

.cover-story {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: max(30rem, calc(100dvh - 12.75rem));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  background: var(--surface-card);
  color: var(--heading);
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  animation: hero-frame-in 560ms var(--spring-snappy) both;
}

.cover-story::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse 68% 56% at 22% 70%, rgb(206 0 154 / 0.13), transparent 72%);
  pointer-events: none;
  content: "";
}

.cover-story::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(19 17 28 / 0.95) 0%, rgb(19 17 28 / 0.72) 46%, rgb(19 17 28 / 0.08) 80%),
    linear-gradient(0deg, rgb(19 17 28 / 0.8), transparent 55%);
  content: "";
}

.cover-story > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  animation: hero-image-settle 720ms var(--spring-snappy) both;
  transition: transform 650ms var(--ease-snap), filter 650ms var(--ease-snap);
}

.cover-story:hover > img {
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}

.cover-rail {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  display: flex;
  width: 4rem;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  background: var(--brand-origin);
  color: var(--heading);
  transform-origin: bottom;
  animation: hero-rail-in 680ms var(--spring-snappy) 80ms both;
}

.cover-rail small {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.cover-rail strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cover-copy {
  align-self: end;
  width: min(50rem, calc(100% - 4rem));
  padding: 2rem;
}

.cover-copy h1 {
  max-width: 9.5ch;
  margin-block-end: clamp(1.25rem, 2.5vh, 2rem);
  font-size: clamp(3.25rem, 7.2vw, 7.25rem);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.87;
}

.cover-copy .lede {
  display: block;
  max-width: 52ch;
  color: var(--body);
  font-size: 1.125rem;
  line-height: 1.7;
}

.cover-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-block-start: 1.5rem;
  gap: 0.5rem;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 320ms var(--ease-snap), transform 420ms var(--ease-snap);
}

.cover-story:hover .cover-link,
.cover-story:focus-visible .cover-link {
  color: var(--brand-readable);
  transform: translateX(0.25rem);
}

.cover-link span {
  color: var(--brand-readable);
  font-size: 1.25rem;
  transition: transform 420ms var(--ease-snap);
}

.cover-story:hover .cover-link span,
.cover-story:focus-visible .cover-link span {
  transform: translate(0.18rem, -0.18rem);
}

.hero-reveal {
  animation: hero-copy-in 620ms var(--spring-snappy) both;
}

.hero-reveal-1 {
  animation-delay: 80ms;
}

.hero-reveal-2 {
  animation-delay: 160ms;
}

.hero-reveal-3 {
  animation-delay: 250ms;
}

.hero-reveal-4 {
  animation-delay: 340ms;
}

@keyframes hero-frame-in {
  from {
    transform: scale(0.985);
  }
}

@keyframes hero-image-settle {
  from {
    transform: scale(1.075);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes hero-rail-in {
  from {
    opacity: 0;
    transform: scaleY(0.7);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
}

.eyebrow {
  margin-block-end: 0.75rem;
  color: var(--brand-readable);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow a {
  color: inherit;
}

.section-head {
  display: grid;
  margin-block-end: 3rem;
  gap: 1rem;
}

.section-head h1,
.section-head h2 {
  margin-block-end: 2rem;
}

.section-head > p {
  max-width: 38rem;
  margin: 0;
  color: var(--body-subtle);
  font-size: 1rem;
  line-height: 1.625;
}

.lede {
  max-width: 70ch;
  color: var(--body);
  font-size: 1.25rem;
  line-height: 1.7;
}

.post-list,
.story-ledger,
.topic-index {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.5rem;
}

.card {
  display: flex;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  background: linear-gradient(
    180deg,
    var(--surface-card) 0%,
    var(--surface-card) 55%,
    color-mix(in srgb, var(--surface-raised) 14%, var(--surface-card)) 82%,
    color-mix(in srgb, var(--surface-hover) 22%, var(--surface-card)) 100%
  );
  color: var(--body);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: background 250ms ease;
}

.card:hover {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface-raised) 28%, var(--surface-card)) 0%,
    var(--surface-raised) 48%,
    color-mix(in srgb, var(--surface-hover) 32%, var(--surface-raised)) 100%
  );
}

.card-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-raised);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.card:hover .card-media img {
  transform: scale(1.025);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.card-tag {
  display: inline-flex;
  width: fit-content;
  margin-block-end: 0.75rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-default);
  background: var(--surface-raised);
  color: var(--body-subtle);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.card h4 {
  margin-block-end: 1rem;
  color: var(--heading);
  font-size: 1.125rem;
}

.card p {
  display: -webkit-box;
  margin-block-end: 1.5rem;
  overflow: hidden;
  color: var(--body-subtle);
  font-size: 0.875rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-read {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-block-start: auto;
  gap: 0.5rem;
  color: var(--brand-readable);
  font-size: 1rem;
  font-weight: 700;
}

.topic-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  column-gap: 2rem;
  border-block-start: 1px solid var(--border);
}

.topic-index li {
  border-block-end: 1px solid var(--border);
}

.topic-link {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  min-height: 4.5rem;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
  color: var(--body);
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.topic-link:hover {
  background: var(--surface-raised);
  color: var(--heading);
}

.topic-link > span:first-child {
  color: var(--brand-readable);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.topic-link strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.topic-link > span:last-child {
  color: var(--brand-readable);
  font-size: 1.25rem;
}

.story-ledger {
  border-block-start: 1px solid var(--border);
}

.story-ledger li {
  border-block-end: 1px solid var(--border);
}

.story-row {
  display: grid;
  grid-template-columns: 2.5rem 6rem minmax(0, 1fr) auto;
  align-items: center;
  min-height: 8rem;
  gap: 1rem;
  padding-block: 1rem;
  color: var(--body);
  text-decoration: none;
  transition: background-color 150ms ease;
}

.story-row:hover {
  background: var(--surface-card);
}

.story-number {
  align-self: start;
  padding-block-start: 0.25rem;
  color: var(--brand-readable);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.story-thumb {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-default);
  background: var(--surface-raised);
}

.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy .card-tag {
  margin-block-end: 0.5rem;
}

.story-copy {
  min-width: 0;
}

.story-copy h4 {
  margin-block-end: 0.5rem;
  color: var(--heading);
  font-size: 1.125rem;
}

.story-copy p {
  display: none;
  max-width: 58rem;
  margin: 0;
  color: var(--body-subtle);
  font-size: 0.875rem;
  line-height: 1.6;
}

.story-arrow {
  color: var(--brand-readable);
  font-size: 1.25rem;
}

.more-link {
  margin-block: 2rem 0;
}

.more-link a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.cta-band {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  background: linear-gradient(
    180deg,
    var(--surface-card) 0%,
    var(--surface-card) 55%,
    color-mix(in srgb, var(--surface-raised) 14%, var(--surface-card)) 82%,
    color-mix(in srgb, var(--surface-hover) 22%, var(--surface-card)) 100%
  );
  box-shadow: var(--shadow-xs);
}

.cta-band h2 {
  max-width: 18ch;
  margin-block-end: 2rem;
}

.cta-band > p:not(.eyebrow) {
  max-width: 48ch;
  margin-block-end: 1.5rem;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid;
  border-radius: var(--radius-base);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xs), inset 0 1px var(--glint), 0 4px 10px -5px var(--shadow-color);
  transition: background-color 150ms ease, border-color 150ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  box-shadow: inset 0 2px 6px var(--shadow-color);
}

.btn-accent {
  border-color: var(--brand-origin);
  background: var(--brand-origin);
  color: var(--heading);
}

.btn-accent:hover {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: var(--heading);
}

.btn-ghost {
  border-color: var(--border-strong);
  background: var(--surface-card);
  color: var(--heading);
}

.btn-ghost:hover {
  background: var(--surface-raised);
}

.btn:disabled {
  border-color: var(--border-medium);
  background: var(--surface-warm);
  color: var(--disabled-text);
  cursor: not-allowed;
  box-shadow: none;
}

.page-intro > .wrap {
  min-width: 0;
}

.reading {
  max-width: 48rem;
}

.reading h1 {
  max-width: 20ch;
}

.meta {
  color: var(--body-subtle);
  font-size: 0.875rem;
}

.article-hero {
  overflow: hidden;
  margin-block: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
}

.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--body);
  font-size: 1.125rem;
  line-height: 1.7;
}

.prose > p {
  margin-block-end: 1.5rem;
}

.prose h2 {
  margin-block: 4rem 2rem;
  font-size: 1.75rem;
  line-height: 1;
}

.prose h3 {
  margin-block: 3rem 1.5rem;
  font-size: 1.5rem;
  line-height: 1.15;
}

.prose ul,
.prose ol {
  margin-block-end: 1.5rem;
  padding-inline-start: 1.5rem;
}

.prose li {
  margin-block-end: 0.5rem;
}

.prose figure {
  margin-block: 3rem;
}

.prose figure img {
  width: 100%;
  max-height: 44rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  object-fit: contain;
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.video-poster {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
}

.video-poster a {
  position: relative;
  display: grid;
  color: var(--heading);
  text-decoration: none;
}

.video-poster img {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  filter: brightness(0.62);
  transition: filter 150ms ease;
}

.video-poster a:hover img {
  filter: brightness(0.78);
}

.video-poster span {
  position: absolute;
  inset-inline: 1.5rem;
  inset-block-end: 1.5rem;
  display: grid;
  gap: 0.25rem;
}

.video-poster strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
}

.video-poster small {
  color: var(--body);
  font-size: 0.875rem;
}

.disclosure,
.note {
  padding: 1rem;
  border-inline-start: 0.25rem solid var(--brand-origin);
  border-radius: 0 var(--radius-default) var(--radius-default) 0;
  background: var(--surface-card);
  color: var(--body);
  font-size: 0.875rem;
}

.article-foot {
  margin-block-start: 4rem;
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--border);
}

.contact {
  max-width: 40rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  background: linear-gradient(
    180deg,
    var(--surface-card) 0%,
    var(--surface-card) 55%,
    color-mix(in srgb, var(--surface-raised) 14%, var(--surface-card)) 82%,
    color-mix(in srgb, var(--surface-hover) 22%, var(--surface-card)) 100%
  );
  box-shadow: var(--shadow-xs);
}

.field {
  margin-block-end: 1.5rem;
}

.field label {
  display: block;
  margin-block-end: 0.5rem;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 500;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-base);
  background: var(--surface-raised);
  color: var(--heading);
  font: inherit;
  box-shadow: var(--shadow-xs);
  transition: border-color 150ms ease, background-color 150ms ease;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--focus);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--focus);
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.field input:disabled,
.field textarea:disabled {
  border-color: var(--border-medium);
  background: var(--surface-warm);
  color: var(--disabled-text);
  cursor: not-allowed;
}

.site-footer {
  margin-block-start: 1.5rem;
  border-block-start: 1px solid var(--border);
  background: var(--surface-card);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  padding-block: 2rem;
  gap: 2rem;
}

.footer-inner p {
  margin: 0;
}

.footer-mark {
  margin-block-end: 0.5rem !important;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-inner nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-inner nav a:hover {
  color: var(--heading);
}

.copyright {
  color: var(--body-subtle);
  font-size: 0.875rem;
}

@media (min-width: 40rem) {
  .story-row {
    grid-template-columns: 2.5rem 9rem minmax(0, 1fr) auto;
  }

  .story-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  .hero,
  .section {
    padding-block: 4rem;
  }

  .hero {
    padding-block: clamp(1.5rem, 4vh, 3rem);
  }

  .cover-copy {
    padding: 3rem;
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
    align-items: end;
    gap: 3rem;
  }

  .cta-band,
  .contact {
    padding: 3rem;
  }

  .footer-inner {
    padding-block: 4rem;
  }
}

@media (min-width: 64rem) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  .hero,
  .section {
    padding-block: 6rem;
  }

  .hero {
    padding-block: clamp(1.5rem, 4vh, 3rem);
  }

  .cover-story {
    min-height: max(40rem, calc(100dvh - 12.75rem));
  }

  .cover-copy {
    padding: 4rem;
  }

  .cover-copy .lede {
    font-size: 1.25rem;
  }

  .card h4,
  .story-copy h4 {
    font-size: 1.25rem;
  }

  .prose h2 {
    font-size: 2.25rem;
  }

  .site-footer {
    margin-block-start: 6rem;
  }
}

@media (max-width: 47.99rem) {
  .issue-bar .wrap {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.625rem;
    gap: 0.25rem;
  }

  .issue-bar p:last-child {
    display: none;
  }

  .masthead {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    overflow: visible;
    padding-block-end: 0.25rem;
  }

  .site-nav a {
    justify-content: center;
    padding-inline: 0.25rem;
  }

  .cover-story {
    min-height: max(31rem, calc(100dvh - 12.5rem));
  }

  .cover-story::after {
    background: linear-gradient(0deg, rgb(19 17 28 / 0.98) 0%, rgb(19 17 28 / 0.75) 58%, rgb(19 17 28 / 0.1) 100%);
  }

  .cover-rail {
    width: 3rem;
  }

  .cover-copy {
    width: calc(100% - 3rem);
    padding: 1.5rem;
  }

  .cover-copy h1 {
    max-width: none;
    font-size: clamp(2.75rem, 12vw, 3.25rem);
    letter-spacing: -0.045em;
    line-height: 0.9;
  }

  .cover-copy .lede {
    font-size: 1rem;
  }

  .story-row {
    grid-template-columns: 2rem 5rem 1fr;
  }

  .story-arrow {
    display: none;
  }

  .story-copy h4 {
    margin: 0;
  }

  .article-foot {
    display: grid;
    gap: 0.75rem;
  }
}

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

  .cover-story,
  .cover-story > img,
  .cover-rail,
  .hero-reveal {
    transform: none !important;
    filter: none !important;
    animation-name: hero-reduced-fade !important;
    animation-duration: 120ms !important;
    animation-delay: 0ms !important;
  }

  @keyframes hero-reduced-fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
