/* ============================================
   CTA BANNER SECTION
   Brain & Mind Foundation WordPress Theme
   ============================================
   Full-width coral gradient banner with radial
   white glow, circle decoration, centered text,
   and button group.
   ============================================ */

.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--coral) 0%, #e86f55 50%, #d4593f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial white glow */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

/* Circle decoration (bottom-right) */
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* ============================================
   CTA CONTENT
   ============================================ */
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
