/**
 * @file
 * Generic base elements.
 */
/* Navigation related breakpoints */
/* Grid related breakpoints */
*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  interpolate-size: allow-keywords;
}

::selection {
  background-color: var(--blue-dark);
  color: var(--color--white);
}

html {
  font-family: var(--font-sans);
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color--night-5);
  background-repeat: no-repeat;
  background-position: top -100px left 25%;
  background-size: min(100%, 70.625rem);
}
body.is-fixed {
  position: fixed;
  width: 100%;
}

a {
  color: var(--text-on-neutral-primary);
  transition: color 0.2s;
}
a:where(:hover) {
  color: var(--text-on-neutral-primary);
  text-decoration-color: var(--orange);
}
a:where(:focus) {
  outline: solid 2px var(--focus-ring-color);
  outline-offset: 2px;
  border-radius: 2px;
}
a:where(:focus:not(:focus-visible)) {
  outline: 0;
}

button {
  font: inherit;
  border: 0;
  background: 0;
  appearance: none;
  cursor: pointer;
  touch-action: manipulation;
}
button:where(:focus) {
  outline: solid 2px var(--focus-ring-color);
  outline-offset: 2px;
  border-radius: 2px;
}
button:where(:focus:not(:focus-visible)) {
  outline: 0;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

audio {
  display: block;
  max-width: 100%;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (min-width: 62.5rem) {
  h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 81.25rem) {
  h1 {
    font-size: 5rem;
  }
}

h2 {
  letter-spacing: -0.01em;
  font-size: 1.5rem;
  line-height: var(--sp2);
}
@media (min-width: 43.75rem) {
  h2 {
    font-size: 2.25rem;
    line-height: var(--sp3);
  }
}

h3 {
  font-size: 1.25rem;
  line-height: var(--sp1-5);
}
@media (min-width: 43.75rem) {
  h3 {
    font-size: 1.5rem;
    line-height: var(--sp2);
  }
}

h4 {
  font-size: 1.125rem;
  line-height: var(--sp1-5);
}

h5 {
  font-size: 1rem;
  line-height: var(--sp1-5);
}

h6 {
  font-size: 0.875rem;
  line-height: var(--sp);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: var(--sp2) 0 var(--sp1-5);
  color: var(--text-on-neutral-white);
  font-family: var(--font-sans);
  font-weight: bold;
  text-box: trim-both cap alphabetic;
}
@media (min-width: 43.75rem) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: var(--sp3) 0 var(--sp2);
  }
}

ul {
  margin-block-start: 0.25em;
  margin-block-end: 0.25em;
  margin-inline-start: 1.5em;
  margin-inline-end: 0;
  padding-inline-start: 0;
  list-style-type: disc;
  list-style-image: none;
}

details {
  --details-animation-duration: 400ms;
}
@media (prefers-reduced-motion: no-preference) {
  @supports selector(::details-content) {
    details::details-content {
      height: 0px;
      transition: height var(--details-animation-duration) linear;
      content-visibility: auto !important;
      overflow: clip;
    }
    details[open]::details-content {
      height: auto;
    }
  }
}