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

.thank-you__container {
  max-width: 720px;
}

.thank-you__card {
  text-align: center;
}

.thank-you__title {
  margin-bottom: var(--space-3);
}

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

.thank-you__text {
  margin-bottom: var(--space-6);
}

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

.thank-you__btn {
  min-width: 200px;
}

@media (max-width: 600px) {
  .thank-you__card {
    text-align: left;
  }

  .thank-you__actions {
    justify-content: stretch;
  }

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