:root {
  --font-body: "articulat-cf", sans-serif;
  --font-heading: "articulat-cf", sans-serif;
  --font-display: "articulat-heavy-cf", sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  font-weight: 900;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-6);
}

a {
  color: inherit;
  text-decoration: none;
}

a:not(.mc-btn):not([class*="mc-btn"]):not(.header-logo__link) {
  background-image: linear-gradient(var(--mc-green), var(--mc-green));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: color 200ms ease, background-size 200ms ease;
}

a:not(.mc-btn):not([class*="mc-btn"]):not(.header-logo__link):hover {
  color: var(--mc-green);
  background-size: 100% 2px;
}

@media (prefers-reduced-motion: reduce) {
  a:not(.mc-btn):not([class*="mc-btn"]):not(.header-logo__link) {
    transition: none;
  }
  a:not(.mc-btn):not([class*="mc-btn"]):not(.header-logo__link):hover {
    background-size: 100% 2px;
  }
}

.mc-text-link {
  font-weight: 600;
  font-size: 0.9rem;
}

.mc-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mc-green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}