@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/lato-300.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/lato-400.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/lato-700.ttf") format("truetype");
}

@font-face {
  font-family: "Source Code Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/source-code-pro-400.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --text: #212121;
  --surface: #ffffff;
  --hero-overlay: rgba(24, 36, 40, 0.83);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  color: var(--text);
  font-family: "Lato", Arial, sans-serif;
}

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

.hero {
  min-height: 340px;
  color: #fff;
  background:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("/assets/simple-header-blended-small.png") center / cover no-repeat;
}

.site-name {
  width: min(100% - 56px, 1384px);
  margin: 0 auto;
  padding-top: 18px;
  font-size: 17.3333px;
  font-weight: 300;
  line-height: 1.33;
}

.hero-inner {
  width: min(100% - 48px, 744px);
  margin: 0 auto;
  padding: 47px 0 48px;
}

h1 {
  max-width: 744px;
  margin: 0;
  font-size: 85.3333px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.policy {
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.meta {
  margin-bottom: 34px;
}

.meta p,
.policy p,
.policy li {
  font-family: "Source Code Pro", monospace;
  font-size: 14.6667px;
  font-weight: 400;
  line-height: 1.667;
}

.meta p {
  margin: 0;
}

.summary {
  margin: 28px 0 32px;
}

.summary strong {
  font-weight: 400;
}

section {
  margin-top: 28px;
}

h2,
h3 {
  margin: 0 0 12px;
  font-family: "Source Code Pro", monospace;
  font-size: 14.6667px;
  font-weight: 400;
  line-height: 1.667;
}

h3 {
  margin-top: 18px;
}

.policy p {
  margin: 0 0 12px;
}

.policy ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}

.policy li {
  margin: 0 0 12px;
}

.policy strong {
  font-weight: 400;
}

.provider-list {
  list-style: none;
  padding-left: 0 !important;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
}

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

.contact {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .hero {
    min-height: 247px;
  }

  .site-name {
    width: calc(100% - 40px);
    padding-top: 15px;
    font-size: 13px;
  }

  .hero-inner {
    width: calc(100% - 80px);
    padding: 18px 0 34px;
  }

  h1 {
    max-width: 310px;
    font-size: 53.3333px;
    line-height: 1.02;
    text-align: center;
  }

  .policy {
    width: calc(100% - 40px);
    padding: 26px 0 56px;
  }

  .meta {
    margin-bottom: 28px;
  }

  section {
    margin-top: 24px;
  }
}
