/* Neutral, plain compliance styling. No animation, no branding, no imagery. */

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #5c5c5c;
  --rule: #dcdcdc;
  --link: #1a4f8a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131313;
    --fg: #e8e8e8;
    --muted: #a4a4a4;
    --rule: #333333;
    --link: #8ab4e8;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 3rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

main {
  max-width: 42rem;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 2.25rem 0 0.5rem;
}

p,
ul {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

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

a:hover {
  text-decoration: none;
}

.effective {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

/* Home page */
.home h1 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.home .statement {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

nav.links {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

nav.links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.links li {
  margin-bottom: 0.75rem;
}

/* Back link on the policy pages */
.back {
  display: inline-block;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  width: 100%;
  font-size: 0.9375rem;
}

@media (max-width: 480px) {
  body {
    padding: 2rem 1.125rem 3rem;
  }

  .home h1 {
    font-size: 1.75rem;
  }
}
