/* Legal pages. Reading layout rather than dash layout: one column, measure
   capped near 70 characters, and nothing competing with the prose. */
.doc{max-width:44rem;margin:0 auto;padding:48px 20px 64px}
.doc article{margin-top:28px}
.doc h2{font-size:22px;margin:0 0 4px}
.doc h3{font-size:15px;margin:28px 0 6px;color:var(--text)}
.doc p,.doc li{font-size:14px;line-height:1.65;color:var(--muted)}
.doc ul{padding-left:1.1rem;margin:.4rem 0}
.doc li{margin:.25rem 0}
.doc .updated{font-size:12px;color:var(--dim);margin:0 0 24px}
.doc strong{color:var(--text);font-weight:600}

/* Obfuscated email. The DOM text is reversed; this flips it back visually, so
   a scraper reading textContent or matching a mail regex against the source
   gets the address backwards while a reader sees it correctly. */
.eml{
  unicode-bidi:bidi-override;
  direction:rtl;
  color:var(--text);
  cursor:help}
