:root {
  --bg: #faf6ef;
  --fg: #1a1a1a;
  --muted: #5a5651;
  --accent: #a4252b;
  --rule: #d8d2c4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans Pro', Georgia, serif;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.65;
}

.masthead, main, footer {
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.masthead {
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.crumb {
  margin: 0 0 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.crumb a { color: var(--accent); text-decoration: none; }

.kicker {
  margin: 0 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

h1 {
  margin: 0 auto 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  max-width: 30rem;
}

.dek {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}

main {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (max-width: 720px) {
  main { grid-template-columns: 1fr; }
}

.feature .byline {
  margin: 0 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.feature h2 {
  margin: 0 0 1rem;
  font-size: 1.85rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.standfirst {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 0 0 1.5rem;
}

.feature p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.more {
  border-left: 1px solid var(--rule);
  padding-left: 1.5rem;
}
.more h3 {
  margin: 0 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.more ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.more li {
  margin-bottom: 0.85rem;
  font-size: 1.02rem;
  line-height: 1.35;
}
.more a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.more a:hover { border-bottom-color: var(--accent); color: var(--accent); }

footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 1.75rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
footer a { color: var(--accent); text-decoration: none; }
