/* ==========================================================================
   CTA Banner — centered call-to-action, reusable across theme
   ========================================================================== */

.cta-banner {
	background: var(--color-bg-feature);
	padding: var(--space-2xl) var(--space-sm);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 128px 128px;
	opacity: 0.07;
	pointer-events: none;
	z-index: 0;
}

.cta-banner > * {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.cta-banner {
		padding: var(--space-2xl) var(--space-lg);
	}
}

/* Inner container
   ========================================================================== */

.cta-banner__inner {
	max-width: 720px;
	margin: 0 auto;
}

/* Heading
   ========================================================================== */

.cta-banner__heading {
	font-family: var(--font-sans);
	font-weight: var(--fw-regular);
	font-size: clamp(1.8rem, 4vw, 3.5rem);
	color: var(--color-text);
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 var(--space-sm);
}

.cta-banner__heading em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: var(--fw-regular);
}

/* Sub text
   ========================================================================== */

.cta-banner__sub {
	font-family: var(--font-sans);
	font-weight: var(--fw-light);
	font-size: clamp(0.75rem, 1.2vw, 1rem);
	color: var(--color-text-dim);
	line-height: 1.8;
	margin: 0 0 var(--space-lg);
}

/* CTA button — uses shared .hero__cta, centers via flex wrapper
   ========================================================================== */

.cta-banner__cta-wrap {
	display: flex;
	justify-content: center;
}
