:root {
  color-scheme: light;
  --background: #ffffff;
  --ink: #000000;
  --muted: #444444;
  --line: #e5e5e5;
  --accent: #111111;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 9vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.policy-layout {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 0 48px 48px;
}

.policy-document {
  display: flex;
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
}

.policy-document h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

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

.policy-document h2 {
  margin: 16px 0 0;
  font-size: 1.5rem;
  line-height: 1.25;
}

.policy-document h3 {
  margin: 8px 0 0;
  font-size: 1.17rem;
  line-height: 1.25;
}

.policy-document p,
.policy-document li {
  color: var(--ink);
  font-size: 1rem;
}

.policy-document p,
.policy-document ul,
.policy-document ol {
  margin-top: 0;
  margin-bottom: 0;
}

.policy-document ul,
.policy-document ol {
  padding-left: 1.35rem;
}

.toc {
  margin: 0;
  padding: 0;
}

.toc h2 {
  margin-top: 0;
}

.toc ol {
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .policy-layout {
    padding: 0 48px 48px;
  }

  .policy-document {
    padding: 24px 0;
  }
}
