/* The guide's styling — the legal pages' visual language (dark surface, gold
   accent, one readable column) with a touch more warmth for content meant to
   be read for pleasure rather than obligation. Copied to server/guide/ by
   guide-src/build.mjs. */
:root { color-scheme: dark; }
* { box-sizing: border-box; margin: 0; }
body {
  background: #14151a; color: #dfe3ea; margin: 0 auto; max-width: 760px;
  padding: 40px 22px 80px;
  font: 16px/1.7 system-ui, -apple-system, "Segoe UI", sans-serif;
}
a { color: #f2b134; }
header {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid #2a2d36; padding-bottom: 18px; margin-bottom: 26px;
}
.brand { font: 800 22px/1 system-ui, sans-serif; letter-spacing: -.01em; color: #fff; text-decoration: none; }
header nav a, header nav .cur { font-size: 14px; text-decoration: none; }
header nav .cur { color: #8d99ae; }
h1 { font-size: 30px; line-height: 1.2; margin: 0 0 6px; color: #ffd98a; }
h2 { font-size: 19px; margin: 32px 0 8px; color: #fff; }
h3 { font-size: 15px; margin: 20px 0 6px; color: #cfd4dc; }
p, li { color: #c2c9d4; }
p { margin: 10px 0; }
ul, ol { margin: 8px 0; padding-inline-start: 22px; }
li { margin: 7px 0; }
strong { color: #e8ecf3; }
.updated { font-size: 13px; color: #7f8a99; }
.box { background: #1b1d24; border: 1px solid #2a2d36; border-left: 3px solid #f2b134; border-radius: 12px; padding: 16px 18px; margin: 18px 0; }
.box p:first-child { margin-top: 0; }
table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 15px; }
th, td { text-align: start; padding: 9px 10px; border-bottom: 1px solid #262a33; vertical-align: top; }
th { color: #8d99ae; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
footer {
  margin-top: 46px; padding-top: 18px; border-top: 1px solid #2a2d36;
  font-size: 13px; color: #7f8a99; display: flex; flex-wrap: wrap; gap: 6px 14px;
}
