/* ---------- CTA band (component: CtaCard) ---------- */

.cta-section {
	padding: var(--s12) 0;
	background: var(--color-bg);
}

.cta-section .container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 var(--s3);
}

.cta-band {
	background: var(--slate);
	border-radius: var(--r-xl);
	color: #fff;
	padding: var(--s8);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-band:hover .deco--mint {
	transform: scale(1.2) translateY(10px);
}
.cta-band:hover .deco--yellow {
	transform: scale(1.2) translateY(-10px);
}

.cta-band h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	line-height: 1.15;
	color: #fff;
	margin: 0 0 var(--s2);
	position: relative;
	z-index: 1;
}

.cta-band p {
	color: #C6CDD2;
	max-width: 40em;
	margin: 0 auto var(--s4);
	position: relative;
	text-wrap: balance;
	z-index: 1;
}

.cta-band .btn {
	position: relative;
	z-index: 1;
}

/* decorative circles */
.cta-band .deco {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	transition: transform .3s ease;
}

.cta-band .deco--mint {
	width: 180px;
	height: 180px;
	background: rgba(168, 216, 190, .15);
	top: -60px;
	right: -40px;
}

.cta-band .deco--yellow {
	width: 120px;
	height: 120px;
	background: rgba(249, 210, 87, .12);
	bottom: -40px;
	left: -30px;
}

@media (max-width: 640px) {
	.cta-band { padding: var(--s6) var(--s3); }
}
