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

.thank-you__container {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.thank-you__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-4);
}

.thank-you__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.thank-you__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  margin-bottom: var(--space-6);
}

.thank-you__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}

.thank-you__btn-main {
  width: 100%;
}

.thank-you__btn-secondary {
  width: 100%;
}

@media (min-width: 640px) {
  .thank-you__actions {
    flex-direction: row;
  }

  .thank-you__btn-main,
  .thank-you__btn-secondary {
    width: auto;
  }
}
