.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.thank-you__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you__header h1 {
  margin-bottom: var(--space-3);
}

.thank-you__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

.thank-you__body p:last-of-type {
  margin-bottom: var(--space-6);
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .thank-you__card {
    padding: var(--space-4);
  }

  .thank-you__actions {
    flex-direction: column;
  }

  .thank-you__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
