/* ITCSS: elements — base typography & links */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-cream);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

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

a {
  color: var(--color-gold-deep);
  text-decoration: none;
  font-weight: 700;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.25s ease;
}

a:hover,
a:focus-visible {
  background-size: 100% 2px;
}

a.btn,
a.btn:hover,
a.btn:focus-visible,
.site-logo a,
.site-logo a:hover,
.nav a,
.nav a:hover,
.cookie-bar a,
.age-bar a {
  background-image: none;
}

strong {
  font-weight: 800;
}

small {
  font-size: 0.85em;
  color: var(--color-muted);
}

hr {
  border: 0;
  border-top: 1px solid var(--color-line);
  margin: var(--space-7) 0;
}
