/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  padding: 48px 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30.4px;
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner__desc {
  font-size: 15.2px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 570px;
}

.cta-banner__desc a{
	text-decoration: underline;
}

.cta-banner__btn {
  background: #fff;
  color: var(--purple-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 9999px;
  white-space: nowrap;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background-color 0.25s ease,
    color 0.25s ease;
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.2);
}

.cta-banner__btn:active {
  transform: translateY(0);
}

/* Centered variant (used on inner pages like adults.html) */
.cta-banner--centered {
  padding: 80px 0;
  text-align: center;
}

.cta-banner--centered .container {
  display: block;
}

.cta-banner--centered .cta-banner__title {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner--centered .cta-banner__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: none;
}

@media (max-width: 768px) {
  .cta-banner__title {
    font-size: 24px;
  }

  .cta-banner--centered .cta-banner__title {
    font-size: 28px;
  }
}

@media (max-width: 460px) {
  .cta-banner--centered .cta-banner__title {
    font-size: 24px;
  }
}
