.thank-you-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.thank-you-container {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.thank-you-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(184, 138, 42, 0.6);
  background: rgba(11, 12, 16, 0.9);
  color: var(--gray-100);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

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

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.thank-you-actions .btn {
  min-width: 220px;
}

@media (max-width: 640px) {
  .thank-you-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    align-items: flex-start;
  }

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

  .thank-you-actions {
    justify-content: flex-start;
  }
}
