body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: clamp(30px, 5vw, 46px);
}

h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(20px, 3vw, 22px);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
