:root {
  color-scheme: light;
  --background: #ffffff;
  --text: #2e2b23;
  --muted: #817c70;
  --page-x: clamp(1.25rem, 3.125vw, 2.8125rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 27px;
  text-rendering: geometricPrecision;
}

main {
  width: min(100%, 62.5rem);
  min-height: 100svh;
  padding: 2.25rem var(--page-x) 4.5rem;
}

h1,
h2,
p,
ul {
  margin: 0;
}

h1 {
  max-width: none;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: normal;
}

.details {
  width: 100%;
  margin-top: 1.6875rem;
}

section + section {
  margin-top: 1.6875rem;
}

h2 {
  margin-bottom: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.13em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  color: var(--muted);
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 1px;
}

.agent-note {
  margin-top: 1.6875rem;
  opacity: 0.5;
}

@media (max-width: 700px) {
  main {
    padding-top: 1.25rem;
    padding-bottom: 3rem;
  }
}

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