.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-height) - var(--space-20));
  padding-block: var(--space-20);
}

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

.thank-you-card__content {
  text-align: left;
}

.thank-you-heading {
  margin-bottom: var(--space-4);
}

.thank-you-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.thank-you-secondary-links {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
}

.thank-you-secondary-links a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 600px) {
  .thank-you-section {
    padding-block: var(--space-16);
    min-height: calc(100vh - var(--navbar-height) - var(--space-12));
  }

  .thank-you-card {
    padding: var(--space-4);
  }

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

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