/* RosenBuds V1. Paper and ink. Two type families. Four hues, meaning only. */
:root {
  --paper: #faf8f4;
  --ink: #1a1815;
  --muted: #6b6558;
  --rule: #e2ddd2;
  --candidate: #a16207;
  --testing: #1d4ed8;
  --ratified: #15803d;
  --killed: #b91c1c;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171512;
    --ink: #ece7dd;
    --muted: #9a927f;
    --rule: #33302a;
    --candidate: #d97706;
    --testing: #60a5fa;
    --ratified: #4ade80;
    --killed: #f87171;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Charter, Georgia, 'Times New Roman', serif;
  font-size: 1.06rem;
  line-height: 1.6;
}
main { max-width: 66ch; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }
header.site { max-width: 66ch; margin: 0 auto; padding: 2.25rem 1.25rem 0; }
.wordmark {
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
}
nav.doors { margin-top: 0.6rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
nav.doors a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 1.1rem;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.82rem;
}
nav.doors a:hover, nav.doors a[aria-current="page"] { color: var(--ink); }
h1 { font-size: 1.7rem; line-height: 1.25; margin: 2rem 0 0.5rem; }
h2 { font-size: 1.15rem; margin: 2.2rem 0 0.4rem; }
a { color: inherit; }
.mono, .ledger, .chip, .scoreboard, .dated {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.dated { color: var(--muted); font-size: 0.8rem; }
.chip {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.5rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  vertical-align: middle;
}
.chip.candidate { color: var(--candidate); }
.chip.testing { color: var(--testing); }
.chip.ratified { color: var(--ratified); }
.chip.killed { color: var(--killed); }
.disposition {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}
.scoreboard {
  font-size: 1rem;
  margin: 1.4rem 0 0.3rem;
}
.scoreboard b { font-weight: 700; }
.smallnote { color: var(--muted); font-size: 0.92rem; }
.entry {
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1rem 1.1rem;
  margin: 1.1rem 0;
}
.entry h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.cause { margin: 0.5rem 0 0; }
footer {
  max-width: 66ch;
  margin: 0 auto;
  padding: 1.25rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.78rem;
}
