:root {
  --ink: #081e42;
  --paper: #faf5ee;
  --gold: #b7974d;
  --hairline: rgba(8, 30, 66, 0.34);
  --muted: #526078;
  --display: Didot, "Bodoni 72", "Bodoni MT", Baskerville, Georgia, serif;
  --text: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: #866d32;
}

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

.page-shell {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.masthead {
  position: relative;
  border-top: 5px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 10px 0 13px;
}

.masthead::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
}

.masthead__topline,
.section-label,
.featured__meta,
.eyebrow,
.quiet-nav,
.issue-list time,
.issue-list > li > span,
.footer {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.masthead__topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.masthead__identity {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 8px;
}

.masthead__identity p {
  margin: 0 0 7px;
  font-size: 0.9rem;
  font-style: italic;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(2.65rem, 6.5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-decoration: none;
}

.wordmark__icon {
  display: block;
  width: 0.78em;
  height: 0.76em;
  flex: 0 0 auto;
}

.quiet-nav {
  display: flex;
  gap: 25px;
  margin-top: 13px;
}

.quiet-nav a {
  text-decoration: none;
}

.quiet-nav a::after {
  margin-left: 25px;
  color: var(--gold);
  content: "·";
}

.quiet-nav a:last-child::after {
  content: none;
}

.featured {
  padding: 42px 0 48px;
}

.section-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
}

.section-label span:first-child,
.eyebrow,
.featured__meta span {
  color: #8b7135;
}

.featured__body,
.article-header__body {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 4fr;
  gap: clamp(32px, 7vw, 90px);
  padding-top: 25px;
}

.featured__meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 8px;
  color: var(--muted);
}

.featured__copy,
.article-header__copy {
  max-width: 790px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}

h1 {
  max-width: 800px;
  margin-bottom: 21px;
  font-size: clamp(2.8rem, 6.1vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.dek {
  max-width: 690px;
  margin-bottom: 22px;
  color: #263b5d;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.48;
}

.read-link {
  font-size: 1rem;
  font-style: italic;
}

.subscribe {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  padding: 30px 32px 33px;
  border-top: 3px double var(--ink);
  border-bottom: 3px double var(--ink);
}

.eyebrow {
  margin-bottom: 5px;
}

.subscribe h2,
.section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.subscribe p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: #334766;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 6px;
}

.subscribe-form input {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
}

.subscribe-form input[type="email"] {
  min-width: 0;
  flex: 1;
  padding: 8px 4px;
  background: transparent;
  color: var(--ink);
}

.subscribe-form input[type="email"]::placeholder {
  color: #6e7787;
  opacity: 1;
}

.subscribe-form input[type="submit"] {
  padding: 7px 18px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subscribe-form input[type="submit"]:hover {
  background: var(--gold);
  color: var(--ink);
}

.subscribe-form p {
  flex-basis: 100%;
  margin: 6px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subscribe-form p a {
  color: var(--muted);
}

.archive,
.about {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 4fr;
  gap: clamp(32px, 7vw, 90px);
  padding: 50px 0;
}

.section-heading h2 {
  max-width: 210px;
}

.issue-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.issue-list li {
  display: grid;
  grid-template-columns: 120px 1fr 28px;
  gap: 24px;
  align-items: baseline;
  padding: 17px 0 18px;
  border-bottom: 1px solid var(--hairline);
}

.issue-list time,
.issue-list > li > span {
  color: var(--muted);
}

.issue-list > li > span {
  color: var(--gold);
  text-align: right;
}

.issue-list h3 {
  margin: 0 0 2px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.issue-list h3 a {
  text-decoration: none;
}

.issue-list p {
  margin: 0;
  color: #526078;
  font-size: 0.9rem;
  line-height: 1.4;
}

.about {
  border-top: 1px solid var(--ink);
}

.about__copy {
  max-width: 720px;
  font-size: 1.08rem;
}

.about__copy p:first-child::first-letter {
  float: left;
  margin: 8px 8px 0 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 3.8rem;
  line-height: 0.65;
}

.article-header {
  padding: 42px 0 38px;
}

.article-header .featured__meta a {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--text);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.article-body,
.article-end {
  width: min(720px, 78%);
  margin-left: auto;
}

.article-body {
  padding: 37px 0 49px;
  border-top: 1px solid var(--hairline);
  color: #1d3355;
  font-size: 1.1rem;
  line-height: 1.72;
}

.article-body p {
  margin-bottom: 1.25em;
}

.article-body p:first-child::first-letter {
  float: left;
  margin: 10px 9px 0 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.62;
}

.article-body h2 {
  margin: 1.4em 0 0.45em;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.article-body blockquote {
  margin: 1.7em 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-style: italic;
}

.article-end {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0 50px;
  border-top: 1px solid var(--ink);
  font-size: 0.9rem;
  font-style: italic;
}

.article-end p {
  margin: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0 38px;
  border-top: 3px double var(--ink);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer span {
  color: var(--ink);
}

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

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .page-shell {
    width: min(100% - 30px, 1120px);
  }

  .masthead__identity {
    display: block;
    margin-top: 13px;
  }

  .masthead__identity p {
    margin: 11px 0 0;
  }

  .wordmark {
    gap: 12px;
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .quiet-nav {
    gap: 14px;
  }

  .quiet-nav a::after {
    margin-left: 14px;
  }

  .featured {
    padding: 31px 0 37px;
  }

  .featured__body,
  .article-header__body,
  .archive,
  .about,
  .subscribe {
    grid-template-columns: 1fr;
  }

  .featured__body,
  .article-header__body,
  .archive,
  .about {
    gap: 20px;
  }

  .featured__meta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .article-header {
    padding: 31px 0 27px;
  }

  .article-header .featured__meta a {
    flex-basis: 100%;
    margin-top: 0;
  }

  .article-body,
  .article-end {
    width: 100%;
  }

  .article-body {
    padding: 29px 0 37px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  .subscribe {
    gap: 25px;
    padding: 26px 0 29px;
  }

  .archive,
  .about {
    padding: 38px 0;
  }

  .section-heading h2 {
    max-width: none;
    margin-bottom: 0;
  }

  .issue-list li {
    grid-template-columns: 1fr 24px;
    gap: 12px;
  }

  .issue-list time {
    grid-column: 1 / -1;
  }

  .issue-list > li > span {
    grid-column: 2;
    grid-row: 2;
  }

  .footer {
    display: block;
  }

  .footer p + p {
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
