/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&family=Epilogue:wght@600;700;800&display=swap');


/* Base */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-anchor-navy);
  background-color: var(--color-white);
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: 1.125rem;
}

/* Body text */
p {
  max-width: var(--content-max-width);
  font-weight: 300;
  line-height: 1.7;
}

/* Labels */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.label--gold {
  color: var(--color-momentum-gold);
}

.label--navy {
  color: var(--color-ocean-blue);
}

/* Strong / emphasis */
strong {
  font-weight: 500;
}

/* Links in body text */
.text-link {
  color: var(--color-signal-pink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}

.text-link:hover {
  color: #b81d58;
}
