:root {
  --bg: #fdfcfa;
  --fg: #1c1a17;
  --muted: #6b6660;
  --rule: #e2ded7;
  --link: #7a4a1e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161513;
    --fg: #eae7e1;
    --muted: #9a948c;
    --rule: #33302b;
    --link: #d9a76c;
  }
}

body {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.6 Charter, Georgia, "Times New Roman", serif;
}

a { color: var(--link); }
a:hover { text-decoration: none; }

header { margin-bottom: 2.5rem; }
header .home {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

h1, h2, h3 { line-height: 1.25; font-weight: 600; }
h1 { font-size: 1.9rem; margin: 0 0 1rem; }
h2 { font-size: 1.25rem; margin: 2.5rem 0 1rem; }

.meta { color: var(--muted); font-size: 0.9rem; margin-top: -0.5rem; }
.empty { color: var(--muted); }

.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--rule);
}
.schedule li:last-child { border-bottom: 1px solid var(--rule); }
.schedule time {
  flex: 0 0 9rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.schedule .what { flex: 1 1 14rem; }
.schedule .also { flex: 0 0 auto; }
.schedule .kind {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--rule);
  color: var(--muted);
}
code { font-size: 0.9em; }
