/* Font faces are self-hosted under the SIL Open Font License. */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/space-grotesk/space-grotesk-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/space-grotesk/space-grotesk-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020-202F,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--ct-bg);
  color: var(--ct-text);
  font: 400 16px/1.6 var(--ct-font);
  -webkit-font-smoothing: antialiased;
}
[data-theme] {
  background-color: var(--ct-bg);
  color: var(--ct-text);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ct-text);
  font-weight: var(--ct-heading-weight);
  letter-spacing: var(--ct-heading-tracking);
  overflow-wrap: break-word;
}
h1 {
  font-size: var(--ct-title);
  line-height: 1.08;
}
h2 {
  font-size: var(--ct-heading);
  line-height: 1.12;
}
h3 {
  font-size: var(--ct-subheading);
  line-height: 1.25;
}
h4,
h5,
h6 {
  font-size: 1.125rem;
  line-height: 1.4;
}
p {
  font-size: 1.125rem;
  color: var(--ct-muted);
}
p + p {
  margin-top: var(--ct-space-3);
}
a {
  color: var(--ct-link);
  text-decoration: none;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration: underline;
}
p a,
li a:not(.ct-button),
.ct-prose a {
  text-decoration: underline;
}
strong,
b {
  font-weight: 600;
  color: var(--ct-text);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--ct-focus);
  outline-offset: 5px;
}
::selection {
  background: #0869ec;
  color: #fff;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: #fff;
  color: #0b1015;
  padding: 12px 20px;
  z-index: 10000;
}
.skip-link:focus {
  top: 12px;
}
.ct-container {
  width: min(var(--ct-width), calc(100% - var(--ct-gutter)*2));
  margin-inline: auto;
}
.ct-container .ct-container {
  width: 100%;
}
.ct-section {
  padding-block: var(--ct-section-space);
}
.ct-section-heading {
  max-width: 820px;
  margin-bottom: var(--ct-space-5);
}
.ct-section-heading p {
  margin-top: var(--ct-space-3);
}
.ct-note {
  font-size: 0.875rem;
  color: var(--ct-muted);
}
.ct-error {
  color: var(--ct-error);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
