:root {
  color-scheme: light;
  --ink: #111;
  --muted: #5b5b5b;
  --faint: #8a8a8a;
  --paper: #fff;
  --rule: #d9d9d9;
  --rule-strong: #111;
  --accent: #c20016;
  --wash: #f6f6f6;
  --max: 1180px;
  --display: "Playfair Display", "Times New Roman", serif;
  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lead a:hover,
.story a:hover,
.secondaries a:hover,
.comment-card a:hover,
.archive-item a:hover {
  text-decoration: none;
}

.lead a:hover h1,
.story a:hover h3,
.secondaries a:hover h3,
.comment-card a:hover h3,
.archive-item a:hover h2 {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.8rem;
}

.skip:focus {
  top: 0.75rem;
}

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

.utility {
  border-bottom: 1px solid var(--rule);
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 7.5rem;
}

.utility-right {
  justify-content: flex-end;
  min-width: 0;
}

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

.subscribe-form {
  display: flex;
  align-items: stretch;
}

.subscribe-form input[type="email"] {
  width: 12.5rem;
  min-width: 0;
  border: 1px solid var(--ink);
  border-right: 0;
  padding: 0 0.75rem;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.subscribe-form input[type="email"]:focus {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
  position: relative;
  z-index: 1;
}

.subscribe-form .subscribe {
  border-left: 0;
}

.subscribe-form.is-thanks input[type="email"] {
  display: none;
}

.subscribe-form.is-thanks .subscribe {
  border: 1px solid var(--ink);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.35rem 1.05rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.subscribe:hover {
  text-decoration: none;
  background: #000;
}

.subscribe.is-thanks,
.subscribe.is-thanks:hover {
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  cursor: default;
}

.masthead {
  padding: 1.15rem 0 0.85rem;
  text-align: center;
}

.masthead-brand {
  display: inline-block;
}

.masthead a:hover {
  text-decoration: none;
}

.nameplate {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.05rem, 6.2vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.edition-date {
  margin: 0.7rem 0 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-nav {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.section-nav ul {
  display: flex;
  gap: 1.15rem;
  margin: 0;
  padding: 0.7rem 0.25rem 0.7rem 1.15rem;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  overflow-x: auto;
}

.section-nav li {
  flex-shrink: 0;
}

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

.section-nav a:hover {
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--ink);
}

.kicker {
  margin: 0 0 0.35rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.kicker.plain {
  color: var(--ink);
}

.meta {
  margin: 0.45rem 0 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
}

.updated {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.6rem 2rem;
  padding: 1.5rem 0 1.7rem;
  border-bottom: 1px solid var(--rule-strong);
}

.lead h1,
.story h3,
.comment-card h3,
.more-list a {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
}

.lead .standfirst {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #333;
}

.lead img,
.story img,
.hero img,
.secondaries img,
.archive-item img,
.pictures img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--wash);
}

.lead .media {
  margin-bottom: 0.9rem;
}

.lead .media img {
  aspect-ratio: 16 / 10;
}

.secondaries {
  display: grid;
  align-content: start;
  gap: 1.25rem;
  padding-left: 2rem;
  border-left: 1px solid var(--rule);
}

.secondaries article {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.secondaries article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.secondaries img {
  aspect-ratio: 16 / 9;
  margin-bottom: 0.7rem;
}

.secondaries h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.story img {
  aspect-ratio: 16 / 10;
  margin-bottom: 0.7rem;
}

.story h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
}

.story p {
  margin: 0.45rem 0 0;
  color: #333;
  font-size: 0.98rem;
}

.band-title {
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comment-band {
  padding: 1.5rem 0 1.7rem;
  border-bottom: 1px solid var(--rule-strong);
}

.comment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.comment-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.15;
}

.comment-card .byline {
  margin: 0 0 0.55rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comment-card p {
  margin: 0.55rem 0 0;
  color: #333;
}

.more {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  padding: 1.6rem 0 2.4rem;
}

.more-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.more-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}

.more-list a {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.more-list a:hover {
  text-decoration: none;
}

.more-list a:hover .headline {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pictures {
  background: var(--wash);
  padding: 1.1rem;
}

.pictures img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pictures p {
  margin: 0.65rem 0 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--rule-strong);
  margin-top: 0.5rem;
  font-family: var(--sans);
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 1.15rem;
  border-bottom: 1px solid var(--rule);
}

.footer-brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 1.5rem 0 1.6rem;
}

.footer-col h2 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col p {
  margin: 0 0 0.9rem;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-col .subscribe-form {
  max-width: 24rem;
}

.footer-col .subscribe-form input[type="email"] {
  flex: 1;
  width: auto;
}

.footer-col .subscribe {
  min-height: 2.4rem;
  padding-inline: 1.2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 1rem 0 1.6rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.page-kicker {
  margin: 1.4rem 0 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-intro {
  margin: 0 0 1.4rem;
  max-width: 40rem;
  color: #333;
}

.archive {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-strong);
}

.archive-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule);
}

.archive-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.archive-item h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.article {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto 3rem;
}

.crumbs {
  margin: 1.2rem 0 0.8rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--ink);
}

.article h1 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.article .standfirst {
  margin: 0 0 1rem;
  font-size: 1.28rem;
  line-height: 1.4;
  color: #333;
}

.byline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  margin-bottom: 1.2rem;
  font-family: var(--sans);
  font-size: 0.88rem;
}

.byline-row strong {
  font-weight: 700;
}

.hero {
  margin: 0 0 0.45rem;
}

.hero img {
  aspect-ratio: 16 / 10;
}

.caption {
  margin: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--muted);
}

.article-body p {
  margin: 0 0 1.05rem;
  font-size: 1.125rem;
  line-height: 1.62;
}

.article-body p:first-of-type::first-letter {
  float: left;
  padding-right: 0.12em;
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 0.8;
}

.article-body blockquote {
  margin: 1.3rem 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--ink);
  font-size: 1.25rem;
  line-height: 1.4;
}

.article-body blockquote cite {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  color: var(--muted);
}

.related {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule-strong);
}

.related h2 {
  margin: 0 0 0.8rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
}

.related a {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.dialog {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  background: rgb(0 0 0 / 0.45);
}

.dialog.open {
  display: block;
}

.dialog[hidden] {
  display: none !important;
}

.dialog-panel {
  width: min(520px, 100%);
  height: 100%;
  background: #fff;
  padding: 1.2rem 1.3rem 2rem;
  overflow: auto;
}

.dialog.search .dialog-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  height: auto;
  margin-top: 4rem;
}

.dialog-panel .icon-btn {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: auto;
  font-size: 1.6rem;
  line-height: 1;
}

.dialog-panel h2 {
  margin: 0.4rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.dialog-panel nav {
  display: grid;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
}

.search-input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 0.6rem 0;
  font-size: 1.2rem;
  outline: none;
}

.search-results {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.search-results li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.search-results a {
  font-family: var(--serif);
  font-weight: 700;
}

.notice {
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--accent);
}

@media (max-width: 900px) {
  .lead-grid,
  .story-row,
  .comment-grid,
  .more,
  .archive-item,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .secondaries {
    padding-left: 0;
    border-left: 0;
    padding-top: 0.4rem;
    border-top: 1px solid var(--rule);
  }

  .utility-left,
  .utility-right {
    min-width: 0;
  }

  .nameplate {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }
}

@media (max-width: 640px) {
  .section-nav ul {
    gap: 1rem;
    padding-left: 1.15rem;
    overflow-x: auto;
  }

  .utility-right .subscribe-form input[type="email"] {
    width: 8.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .subscribe.is-thanks {
    white-space: nowrap;
    font-size: 0.72rem;
    padding-inline: 0.75rem;
  }
}
