.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-20);
}

.thankyou-shell {
  max-width: 42rem;
  margin-inline: auto;
  text-align: left;
}

.thankyou-header {
  margin-bottom: var(--space-5);
}

.thankyou-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.thankyou-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.thankyou-body {
  margin-bottom: var(--space-6);
}

.thankyou-next-step {
  color: var(--color-text);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .thankyou-section {
    padding-block: var(--space-14);
  }

  .thankyou-shell {
    padding: var(--space-5) var(--space-4);
  }

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

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