/* ─────────────────────────────────────────────────────────────
   Legal document pages (privacy, equal opportunities)
   Loaded after site.css.
   ───────────────────────────────────────────────────────────── */

main {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

.page-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* the label sits directly above the heading here */
.page-label {
  margin-bottom: 24px;
}

.updated {
  font-size: 0.8125rem;
  color: var(--ink-dim);
  margin-bottom: 48px;
}

h2 {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--ink);
}

h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--ink);
}

p,
li {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding-left: 16px;
  position: relative;
}

ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

strong {
  font-weight: 500;
  color: var(--ink);
}

main a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

main a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  font-size: 0.8125rem;
}

th {
  text-align: left;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
}

td {
  font-weight: 300;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.5;
  vertical-align: top;
}

.divider {
  height: 1px;
  background: var(--rule);
  margin: 48px 0;
}

.registered {
  font-size: 0.75rem;
  color: var(--ink-dim);
  font-style: italic;
  line-height: 1.6;
}

/* the cookie banner sets its own type — don't inherit the prose scale */
.cookie-banner p {
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  main {
    padding: 48px var(--gutter) 64px;
  }
}
