/* Shared styling for privacy.html, terms.html and dpa.html.
   These three pages each carried their own copy of this block inline, with
   divergent token names, so a colour change meant editing three files and
   missing one. Same tokens as css/styles.css. */
:root {
  --paper: #f7f4ee;
  --card: #fff;
  --ink: #16243a;
  --ink-2: #3a4759;
  --muted: #6c7789;
  --line: #e5ded2;
  --accent: #bd5a3c;
  --brown: #7a4e18;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: "General Sans", system-ui, sans-serif;
  line-height: 1.65;
  font-size: 16px;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
a {
  color: var(--accent);
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}
.brand {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
h1 {
  font-family: "Cabinet Grotesk", sans-serif;
  color: var(--ink);
  font-size: 34px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
h2 {
  font-family: "Cabinet Grotesk", sans-serif;
  color: var(--ink);
  font-size: 20px;
  margin: 30px 0 10px;
}
h3 {
  font-family: "Cabinet Grotesk", sans-serif;
  color: var(--brown);
  font-size: 16px;
  margin: 18px 0 6px;
}
p,
li {
  margin-bottom: 10px;
}
ul {
  padding-left: 22px;
}
.meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink-2);
  margin: 24px 0;
}
/* Long tables must scroll inside themselves rather than pushing the page
   sideways on a phone. */
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
td,
th {
  border: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--card);
  color: var(--ink);
}
footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
