html {
  background: var(--color-white);
  font-size: 16px;
  min-height: -webkit-fill-available;
  scroll-padding-top: calc(var(--font-size) * 2.1 + var(--space-neutral));
}

html:has(dialog[open]) {
  overflow: hidden;
}

body {
  background: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-graphik);
  font-feature-settings: 'liga', 'ss05';
  font-size: var(--font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body.has-nav-phrase {
  opacity: 0;
}

a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.0925em;
}

b,
strong {
  color: var(--color-black);
  font-weight: 600;
}

i,
em {
  font-style: italic;
}

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

button,
input {
  color: var(--color-black);
  font-family: var(--font-family-graphik);
  font-feature-settings: 'liga', 'ss05';
  font-size: inherit;
  font-weight: 400;
  letter-spacing: inherit;
  line-height: inherit;
}

video::cue {
  font-family: var(--font-family-graphik);
  font-feature-settings: 'liga', 'ss05';
  font-size: var(--font-size-small);
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
  line-height: 1;
}

u {
  background: url('/assets/images/general/underline.svg') bottom center/100% 0.15em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-bottom: 0.1em;
  text-decoration: none;
}



@supports(-webkit-touch-callout: none) {

  body {
    min-height: -webkit-fill-available;
  }

}



@media(hover: hover) {

  a:focus,
  a:hover {
    color: var(--color-black);
  }

}
