.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-height) - 6rem);
}

.thank-you-card {
  max-width: 720px;
  margin-inline: auto;
  text-align: left;
}

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

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

.thank-you-body p {
  font-size: var(--font-size-sm);
}

.thank-you-next-step {
  color: var(--gray-100);
}

.thank-you-actions {
  flex-wrap: wrap;
}

.thank-you-hint {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.thank-you-hint a {
  font-size: inherit;
}

@media (max-width: 640px) {
  .thank-you-wrapper {
    min-height: calc(100vh - var(--navbar-height) - 4rem);
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

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