/* Support and privacy pages. Standalone from the pane's stylesheet — these are
   read in a browser at full width, not in a 320px task pane, and they must render
   on a reviewer's machine with no build step and no webfont fetch. */
:root {
  color-scheme: light dark;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --rule: #e0e0e0;
  --link: #0b5cab;
  --page: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8e8e8;
    --muted: #a8a8a8;
    --rule: #3a3a3a;
    --link: #7ab3f0;
    --page: #161616;
  }
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font: 16px/1.6 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.1rem;
  margin: 2.25rem 0 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.lead {
  color: var(--muted);
  margin-top: 0;
}

a {
  color: var(--link);
}

code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9em;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}
