/* ==========================================================================
   final-cta-banner.css — Shared full-bleed closing CTA banner
   Used by: page-staffing-solutions.php, page-remote-talent.php,
            page-back-office-roles.php (and any future page)
   Markup: template-parts/final-cta-banner.php
   Ported from: page-truck-dispatch-v2.css (.v2-fcta)
   ========================================================================== */

.fcta {
	position: relative;
	padding-block: 7rem;
	text-align: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.fcta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 12, 0.80);
	z-index: 1;
}

.fcta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.fcta__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 900;
	color: #fff !important;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.fcta__sub {
	margin: 0;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .78);
	line-height: 1.5;
}

@media (max-width: 640px) {
	.fcta {
		padding-block: 3rem;
	}

	.fcta .lp-btn {
		width: 100%;
		max-width: 360px;
		justify-content: center;
	}
}
