/* CTA Band module */
.cta__band {
	color: #fff;
	padding: 36px 40px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.cta__band--navy { background: var(--navy); }
.cta__band--teal { background: var(--teal); }

.cta__heading { color: #fff; font-size: 1.4rem; margin: 0; }
.cta__desc { color: rgba(255,255,255,0.75); margin-top: 4px; }

.cta__band--teal .cta__desc { color: rgba(255,255,255,0.9); }
.cta__band--teal .btn--primary {
	background: #fff; color: var(--ink);
}
.cta__band--teal .btn--primary:hover { background: #f0f0f0; }

@media (max-width: 720px) {
	.cta__band { flex-direction: column; align-items: flex-start; padding: 28px; gap: 16px; }
	.cta__band .btn { width: 100%; }
}
