/* WWR Style System v1: base layer */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif);
  font-size: var(--wwr-body-size, 16px);
  font-weight: 400;
  color: var(--wwr-text);
  background: var(--wwr-bg-primary);
  background-attachment: fixed;
  line-height: 1.5;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
 a:focus-visible {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-brand, var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif));
  color: var(--wwr-text);
  margin: 0;
}

p {
  margin: 0 0 1rem;
}
