*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hc-color-bg);
  color: var(--hc-color-text);
  font-family: var(--hc-font-body);
  font-size: var(--hc-body-size);
  line-height: var(--hc-line-body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.hc-container {
  width: min(calc(100% - (var(--hc-gutter-desktop) * 2)), var(--hc-container));
  margin-inline: auto;
}
.hc-section { padding-block: var(--hc-section-y); }
.hc-section--surface { background: var(--hc-color-surface); }
.hc-section--soft { background: var(--hc-color-surface-soft); }
.hc-section--dark { background: var(--hc-color-primary); color: var(--hc-color-white); }

.hc-eyebrow {
  margin: 0 0 var(--hc-space-3);
  color: var(--hc-color-accent);
  font-size: var(--hc-caption-size);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hc-heading {
  margin: 0;
  font-family: var(--hc-font-heading);
  font-weight: 600;
  line-height: var(--hc-line-heading);
}
.hc-heading--display { font-size: var(--hc-display-size); }
.hc-heading--section { font-size: var(--hc-h2-size); }
.hc-copy { color: var(--hc-color-muted); }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
