.thank-you-main {
  min-height: calc(100vh - 4.25rem);
  display: flex;
  align-items: center;
}

.thank-you-section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

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

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

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

.thank-you-lead {
  color: var(--color-text-muted);
  max-width: 40rem;
}

.thank-you-body {
  margin-top: var(--space-4);
  color: var(--color-text);
}

.thank-you-body p:last-child {
  margin-bottom: 0;
}

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

.thank-you-note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.thank-you-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-style: dotted;
}

.thank-you-link:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(244, 114, 182, 0.6);
}

@media (max-width: 768px) {
  .thank-you-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

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

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