:root {
  color-scheme: light;
  --ink: #17211a;
  --muted: #5d6a62;
  --paper: #f8f4ea;
  --panel: #ffffff;
  --accent: #1d6b42;
  --line: #d9dfd3;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
  font-weight: 700;
}

.shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 36px 20px 56px;
}

.hero {
  min-height: 52vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  color: var(--muted);
}

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

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

h2 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

p,
li {
  line-height: 1.65;
}

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

.text-page {
  max-width: 760px;
}

.text-page h1 {
  font-size: clamp(40px, 7vw, 64px);
  margin-top: 28px;
}

.text-page h2 {
  margin-top: 34px;
}

.back {
  text-decoration: none;
}

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

  .hero {
    min-height: 44vh;
  }
}
