/* Shared type styles. */

.title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-3xl);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.question {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-2xl);
  font-weight: 500;
  line-height: 1.25;
  text-wrap: balance;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-sm);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.script {
  margin: 0;
  font-family: var(--font-script);
  font-size: var(--font-lg);
  color: var(--blush);
}

.lead {
  margin: 0;
  font-size: var(--font-md);
  color: var(--ink-soft);
  text-wrap: pretty;
}

.rule {
  width: 4.5rem;
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--blush-soft);
}

@media (min-width: 40rem) {
  .title {
    font-size: 3.75rem;
  }

  .question {
    font-size: 2.75rem;
  }

  .script {
    font-size: var(--font-xl);
  }
}
