/**
 * StepDecor CTA Banner — consumed by Cta_Banner::render().
 */

.sd-cta-banner {
	position: relative;
	text-align: center;
	padding: 10rem 5%;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.sd-cta-banner__scrim {
	position: absolute;
	inset: 0;
	background: rgba(8, 8, 8, .8);
}

.sd-cta-banner__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}

.sd-cta-banner__title {
	font-family: var(--sd-font-heading);
	font-weight: 700;
	color: #fff;
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	line-height: 1.2;
}

.sd-cta-banner__title em {
	font-style: italic;
	color: var(--sd-color-primary-light);
}

.sd-cta-banner__body {
	color: rgba(255, 255, 255, .68);
	font-size: 1.05rem;
	line-height: 1.82;
	margin: 1.5rem 0 2.5rem;
}

@media (max-width: 680px) {
	.sd-cta-banner {
		background-attachment: scroll;
	}
}
