/**
 * wc-cta-band.css
 * Source: WeConnect-ClinicalTrials_v3-02MAR2026.html lines 123–131
 */

.cta-band {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 140, 132, .12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band-headline {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-h2);
  font-weight: 900;
  font-style: italic;
  color: var(--red-mid);
  line-height: 1.2;
  margin-bottom: var(--sp-xs);
}

.cta-band-body {
  font-size: var(--t-body);
  color: var(--body-text);
  line-height: 1.7;
  max-width: 600px;
}

.cta-band .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--sp-md);
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-band .cta-buttons {
    justify-content: center;
  }
}