:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --ink: #221e19;
  --ink-soft: #665f54;
  --line: #e6e0d6;
  --accent: #b9622c;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17140f;
    --surface: #201c16;
    --ink: #f0ece3;
    --ink-soft: #b3a996;
    --line: #362f26;
    --accent: #e08a4f;
  }
}

* { box-sizing: border-box; }

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

.wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

a { color: var(--accent); }

.brand {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}

h1 {
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.2;
  margin: 18px 0 8px;
}

.updated {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

h2 {
  font-size: 19px;
  margin: 36px 0 10px;
}

p, li { color: var(--ink); font-size: 15.5px; }

ul { padding-left: 22px; }

.card-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }

.card-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.card-list a span {
  display: block;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
