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

.thankyou-container {
  max-width: 640px;
}

.thankyou-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.thankyou-kicker {
  font-family: var(--font-family-accent);
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-4);
}

.thankyou-title {
  margin-bottom: 0;
}

.thankyou-body {
  margin-top: var(--space-10);
  text-align: center;
}

.thankyou-message,
.thankyou-next {
  font-size: var(--font-size-md);
}

.thankyou-actions {
  margin-top: var(--space-16);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

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

  .thankyou-body {
    text-align: left;
  }

  .thankyou-actions {
    justify-content: flex-start;
  }
}
