/* Long-form reading layout for /privacy. Reuses the brand tokens
   from styles.css but overrides the landing page's centered, single-screen
   layout for a left-aligned document column. */
:root {
  --bg: #f7f5f1;
  --fg: #1f2a44;
  --muted: #5a6478;
  --accent: #b8965a;
  --rule: rgba(31, 42, 68, 0.12);
  --draft-bg: #fbf3e2;
  --draft-fg: #7a5a1e;
  --doc-width: 720px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  background: #fff;
}

.site-header a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: var(--doc-width);
  margin: 0 auto;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
}

.site-header img {
  height: 32px;
  width: auto;
}

main {
  max-width: var(--doc-width);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* DRAFT banner — remove this element when the counsel-approved final ships. */
.draft-notice {
  background: var(--draft-bg);
  color: var(--draft-fg);
  border: 1px solid rgba(122, 90, 30, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 32px;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 4px;
}

h2 {
  font-size: 21px;
  font-weight: 600;
  margin: 40px 0 8px;
  padding-top: 8px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 4px;
}

p,
li {
  font-size: 16px;
  color: var(--fg);
}

.subtle,
.subtle em {
  color: var(--muted);
  font-size: 15px;
}

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

ul,
ol {
  padding-left: 22px;
}

li {
  margin: 4px 0;
}

blockquote {
  border-left: 3px solid var(--accent);
  margin: 16px 0;
  padding: 4px 16px;
  color: var(--muted);
  background: rgba(184, 150, 90, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}

th,
td {
  border: 1px solid var(--rule);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(31, 42, 68, 0.04);
  font-weight: 600;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}

footer a {
  color: var(--muted);
}

/* Dateline under the page title — the "Last updated …" line. */
.dateline {
  color: var(--muted, #6b7280);
  font-size: 14px;
  margin-bottom: 28px;
}
