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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
[role='button'] {
  cursor: pointer;
}

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

.icon-svg {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.section-intro {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.text-primary {
  color: var(--text);
}

.u-margin-top-16 {
  margin-top: 16px;
}

.u-margin-inline-auto {
  margin-inline: auto;
}

.divider-centered {
  margin: 20px auto 0;
}

.divider-spaced {
  margin-bottom: 40px;
}

.btn-inline {
  display: inline-block;
}

.summary-content {
  padding: 0 24px 24px;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.chart-bar-fill {
  width: var(--chart-value, 0%);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  transform: translateY(0);
}

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