:root { --bg:#101215; --ink:#eef1f4; --ink-2:#99a1ab; --accent:#5ec8a0; --line:#262b32; }
@media (prefers-color-scheme: light) { :root { --bg:#f4f4f5; --ink:#17191c; --ink-2:#5c646e; --accent:#1f7a5c; --line:#e2e4e8; } }
html { background: var(--bg); color-scheme: dark light; }
body { margin: 0; padding: 32px 20px 64px; max-width: 42rem; margin: 0 auto; background: var(--bg); color: var(--ink);
  font: 17px/1.55 ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif; -webkit-font-smoothing: antialiased; }
h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.4px; margin: 0 0 4px; }
h2 { font-size: 19px; font-weight: 800; margin: 28px 0 8px; }
p, li { color: var(--ink); } .muted { color: var(--ink-2); font-size: 15px; }
a { color: var(--accent); }
.draft { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: 13px; font-weight: 700; color: var(--ink-2); margin: 10px 0 18px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
ul { padding-left: 20px; }

/* The language picker. Present on every legal page now that there is more
   than one language to choose between; without JavaScript it is a list of
   anchors and every language is shown in full below it. */
.langs {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  margin: 0 0 28px; padding: 0 0 18px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.25);
  font-size: 14px;
}
.langs a { color: inherit; opacity: 0.6; text-decoration: none; }
.langs a:hover { opacity: 1; text-decoration: underline; }
.langs a[aria-current="true"] { opacity: 1; font-weight: 700; text-decoration: underline; }
.convenience { font-style: italic; }
