:root {
  --ink: #17211f;
  --muted: #5d6965;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --forest: #173f35;
  --gold: #c99738;
  --line: #d9ded7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

.article-header,
.article-footer {
  padding: 18px clamp(18px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.article-header a,
.article-footer a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.article-logo {
  display: block;
  width: min(58vw, 300px);
}

.article-logo img {
  display: block;
  width: 100%;
}

.article-shell {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 92px) 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.04;
}

.dek {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

article {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.syndication-box {
  margin-top: 28px;
  padding: 18px;
  background: #edf3ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.syndication-box p {
  margin: 0 0 12px;
  color: var(--muted);
}

.syndication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.syndication-actions a {
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.syndication-actions a.secondary-link {
  border-color: var(--line);
  color: var(--muted);
}

article p {
  margin: 0 0 1.15rem;
}

article h2 {
  margin: 2rem 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.14;
}

.principle {
  margin-top: 28px;
  padding: 18px;
  background: #edf3ef;
  border-left: 5px solid var(--forest);
  font-weight: 900;
}

.article-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
