/* Elements — base typography & links */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-blue-deep);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
}

p + p {
  margin-top: var(--space-4);
}

a:not(.btn):not(.site-logo):not(.nav__link):not(.op-row__cta) {
  color: var(--color-blue);
  font-weight: 600;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.25s ease;
}

a:not(.btn):not(.site-logo):not(.nav__link):not(.op-row__cta):hover {
  background-size: 100% 1px;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

code,
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}