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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--vzp-dark);
  background-color: var(--vzp-white);
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--vzp-red);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--vzp-red-hover);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
.vzp-headline {
  font-family: var(--font-family-base), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vzp-red);
  margin-top: 0;
  letter-spacing: 0.01em;
}

h1.hero-kicker {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--vzp-dark-secondary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  line-height: calc(1em + 4px);
  margin-bottom: var(--space-lg);
  overflow-wrap: break-word;
}

.header-text {
  font-family: var(--font-family-base), sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vzp-red);
  margin-top: 0;
  letter-spacing: 0.01em;
  width: 60px;
}
.divider {
  width: 2px;
  height: 40px;
  background-color: var(--vzp-red);
}

.section-title {
  font-size: 1.375rem;
  line-height: calc(1.375rem + 4px);
  margin-bottom: var(--space-lg);
}

h4 {
  font-size: 1.0625rem;
  line-height: calc(1.0625rem + 3px);
  margin-bottom: var(--space-sm);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

li + li {
  margin-top: var(--space-xs);
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 40em) {
  .section-title {
    font-size: 1.75rem;
    line-height: calc(1.75rem + 4px);
  }

  h4 {
    font-size: 1.25rem;
    line-height: calc(1.25rem + 3px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
