*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

html, body { overflow-x: clip; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--font-size-body-4);
  line-height: var(--line-height-body-4);
  font-weight: var(--font-weight-regular);
  color: var(--color-neutral-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, picture, video, canvas { display: block; max-width: 100%; }

ul, ol { list-style: none; padding: 0; margin: 0; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: var(--font-weight-regular); }
p { margin: 0; }

.container {
  max-width: var(--container-desktop);
  margin-inline: auto;
  padding-inline: var(--gutter-desktop);
}

@media (max-width: 1279px) {
  .container {
    max-width: none;
    padding-inline: var(--gutter-tablet);
  }
}
@media (max-width: 767px) {
  .container {
    padding-inline: var(--gutter-mobile);
  }
}

.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;
}

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
