:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --ink: #1f2933;
  --muted: #52606d;
  --line: #cbd2d9;
  --accent: #006d77;
}

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

.page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.eyebrow,
.updated,
.back {
  color: var(--muted);
  font-size: 0.95rem;
}

.back {
  text-decoration: none;
}

h1 {
  margin: 10px 0 18px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
}

h2 {
  margin: 34px 0 8px;
  font-size: 1.15rem;
}

p {
  max-width: 680px;
}

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

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fffaf2;
  text-decoration: none;
}
