:root {
  color-scheme: light;
  --background: #f6f6f1;
  --paper: #ffffff;
  --text: #111111;
  --muted: #555555;
  --rule: #b8b8ad;
  --link: #0000a0;
  --link-visited: #551a8b;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

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

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid #f2c94c;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 10;
  padding: 0.6rem 0.85rem;
  color: #ffffff;
  background: #111111;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.page {
  width: min(100% - 2rem, 52rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2.5rem 2.75rem 2rem;
  background: var(--paper);
  border-right: 1px solid #e2e2dc;
  border-left: 1px solid #e2e2dc;
}

.site-header {
  text-align: center;
}

.site-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-title a,
.site-title a:visited {
  color: var(--text);
  text-decoration: none;
}

.site-kicker {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rule {
  margin: 1.65rem 0;
  border: 0;
  border-top: 1px solid var(--rule);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  margin: 0;
  font-style: normal;
}

.contact span {
  white-space: nowrap;
}

.content {
  max-width: 43rem;
  margin: 0 auto;
}

.content h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.2;
}

.content h2 {
  margin: 1.8rem 0 0.45rem;
  font-size: 1.18rem;
  line-height: 1.3;
}

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

.content li + li {
  margin-top: 0.35rem;
}

.lead {
  font-size: 1.1rem;
}

.contact-callout {
  margin: 1.75rem 0 0;
  padding: 1rem 1.15rem;
  background: #f2f2ec;
  border: 1px solid #d3d3c9;
}

.contact-callout p:last-child {
  margin-bottom: 0;
}

.last-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.site-footer p {
  margin: 0;
}

.footer-disclaimer {
  flex-basis: 100%;
  max-width: 100%;
  line-height: 1.5;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  :root {
    font-size: 17px;
  }

  .page {
    width: 100%;
    padding: 1.5rem 1.1rem 1.35rem;
    border: 0;
  }

  .contact {
    display: grid;
    justify-items: center;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

@media print {
  :root {
    font-size: 11pt;
  }

  html,
  body,
  .page {
    background: #ffffff;
  }

  .page {
    width: 100%;
    padding: 0;
    border: 0;
  }

  .skip-link {
    display: none;
  }

  a {
    color: #000000;
  }
}
