/* KG — CTA Banner block */
.kg-cta-band {
	position: relative;
	background: #0a2463 center/cover no-repeat;
	color: #fff;
	padding: 4.5rem 1.5rem;
}
.kg-cta-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10, 36, 99, .92) 0%, rgba(10, 36, 99, .7) 100%);
}
.kg-cta-band__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: center;
}
.kg-cta-band__title {
	color: #fff !important;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 700;
	margin: 0 0 .5rem;
	line-height: 1.2;
}
.kg-cta-band__sub {
	color: rgba(255, 255, 255, .85);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0;
	max-width: 600px;
}
.kg-cta-band__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
@media (max-width: 800px) {
	.kg-cta-band__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.kg-cta-band__actions {
		justify-content: center;
	}
}
