body.has-fixed-header main.thank-you-main {
  padding-top: calc(var(--banner-height) + var(--header-height));
}

.thank-you-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--banner-height) - var(--header-height));
}

.thank-you-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-40) var(--space-32);
  background-color: var(--color-bg-editorial);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.thank-you-card h1 {
  margin-top: var(--space-20);
  margin-bottom: var(--space-20);
}

.thank-you-card .lead {
  margin-bottom: var(--space-24);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

@media (max-width: 640px) {
  .thank-you-card {
    padding: var(--space-32) var(--space-24);
  }

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

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