/* Typography */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.text-light {
  color: var(--color-text-light);
}

.text-center {
  text-align: center;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-weight: var(--font-weight-normal);
}

@media (max-width: 768px) {
  .subheadline {
    font-size: 1.125rem;
  }
}
