:root {
  --bg: #fbfaf7;
  --fg: #1c1b19;
  --muted: #605c54;
  --rule: #e2ddd3;
  --accent: #8a5a00;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161513;
    --fg: #f0ede6;
    --muted: #a29c91;
    --rule: #2e2c28;
    --accent: #f0b429;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  max-width: 44rem;
  background: var(--bg);
  color: var(--fg);
  font: 1rem/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

header { border-bottom: 1px solid var(--rule); padding-bottom: 1rem; }

h1 { margin: 0; font-size: 1.9rem; letter-spacing: -0.02em; }

.tagline, .updated, .meta, footer p { color: var(--muted); }

.tagline { margin: 0.35rem 0 0; }

.updated { margin: 0.75rem 0 0; font-size: 0.85rem; }

.items { list-style: none; margin: 0; padding: 0; }

.items li { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }

.headline {
  color: var(--fg);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.headline:hover, .headline:focus { color: var(--accent); text-decoration: underline; }

.headline:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.meta { margin: 0.35rem 0 0; font-size: 0.82rem; }

.publisher { font-weight: 600; }

.publisher::after { content: " ·"; font-weight: 400; }

.empty { padding: 2rem 0; color: var(--muted); }

footer { margin-top: 2rem; font-size: 0.8rem; }
