/**
 * Scroll Velocity Styles
 * Separate CSS file for scroll-velocity block
 * Based on GSAP marquee text with scroll effect
 */

.scroll-velocity-banner {
	overflow: hidden;
	position: relative;
	padding-top: 4rem;
	padding-bottom: 4rem;
	font-size: 6rem;
	line-height: 1.2;
	text-transform: uppercase;
}

.scroll-velocity-banner__inner {
	display: flex;
	flex-wrap: nowrap;
	padding-right: 4rem;
	padding-left: 4rem;
}

.scroll-velocity-banner__inner span {
	white-space: nowrap;
	margin-right: 20rem;
}

.scroll-velocity-banner-wrapper {
	display: flex;
	flex-wrap: nowrap;
}

@media (max-width: 768px) {
	.scroll-velocity-banner {
		font-size: 3rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	
	.scroll-velocity-banner__inner {
		padding-right: 2rem;
		padding-left: 2rem;
	}
	
	.scroll-velocity-banner__inner span {
		margin-right: 10rem;
	}
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.scroll-velocity-banner-wrapper {
		animation: none;
		transform: none !important;
	}
}

