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

.thank-you-section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.thank-you-container {
  display: flex;
  justify-content: center;
}

.thank-you-panel {
  max-width: 640px;
  width: 100%;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(200, 164, 90, 0.45);
  text-align: center;
}

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

.thank-you-message {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.thank-you-context,
.thank-you-next {
  color: rgba(245, 239, 230, 0.9);
  margin-bottom: var(--space-4);
}

.thank-you-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
}

.thank-you-cta-main,
.thank-you-cta-secondary {
  width: 100%;
}

@media (min-width: 640px) {
  .thank-you-panel {
    padding: var(--space-12) var(--space-10);
  }

  .thank-you-actions {
    flex-direction: row;
  }

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