:root {
  --paper: #f5f7f2;
  --white: #ffffff;
  --ink: #182420;
  --green: #17473a;
  --wine: #812f42;
  --muted: #66716c;
  --line: #d7ddd8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(24, 36, 32, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 36, 32, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
  font-family: "DM Sans", Arial, sans-serif;
}

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

.article-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 242, .94);
  backdrop-filter: blur(18px);
}

.article-brand {
  display: grid;
  gap: 1px;
}

.article-brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.article-brand span,
.article-back {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-back {
  padding: 10px 0;
  color: var(--green);
  border-bottom: 1px solid var(--green);
}

.article-shell {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 0 100px;
}

.article-shell article {
  width: min(100%, 820px);
  margin: 0 auto;
}

.article-kicker,
.article-shell time {
  color: var(--wine);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-shell time {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

h1 {
  max-width: 780px;
  margin: 22px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.16;
}

.article-summary {
  max-width: 700px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.article-body {
  padding-top: 34px;
  border-top: 1px solid var(--ink);
}

.article-body p {
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 1.8;
}

.article-body strong { color: var(--green); }
.article-source {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-shell footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-shell footer p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.article-shell footer a {
  padding: 13px 18px;
  color: var(--white);
  background: var(--green);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .article-header { min-height: 64px; padding: 0 16px; }
  .article-brand strong { font-size: .95rem; }
  .article-brand span, .article-back { font-size: .52rem; }
  .article-shell { width: min(100% - 32px, 1180px); padding-top: 54px; }
  h1 { font-size: 1.35rem; }
  .article-summary { margin-bottom: 36px; }
  .article-shell footer { display: grid; }
}
