/* ── section-footer-cta block ─────────────────────────────────────────────────── */
.section-footer-cta {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 110px 0;
	background: #D32323;
}

.section-footer-cta__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}

.section-footer-cta__title {
	color: #fff;
	font-family: 'owners', system-ui, sans-serif;
	font-weight: 500;
	font-size: 90px;
	line-height: 86px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}

/* ── section-footer-cta__marquee ──────────────────────────────────────────────── */
.section-footer-cta__marquee {
	padding-top: 40px;
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.section-footer-cta__marquee-track {
	display: inline-flex;
	width: max-content;
	animation: section-footer-cta-scroll 28s linear infinite;
}

.section-footer-cta__marquee-item {
	font-family: 'owners', system-ui, sans-serif;
	font-size: 26px;
	line-height: 100%;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	padding-right: 80px;
}

@keyframes section-footer-cta-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1199px) {
	.section-footer-cta__title {
		color: #fff;
		font-family: 'owners', system-ui, sans-serif;
		font-weight: 500;
		font-size: 70px;
		line-height: 86px;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.section-footer-cta__title {
		font-size: 36px;
		line-height: 38px;
	}
}
