/**********************************************************
// Block >> Scrolling As Seen In
**********************************************************/
.Block-Scrolling-As-Seen-In {
	padding: 40px 0;
	text-align: center;
}

.Block-Scrolling-As-Seen-In-Logos {
	overflow: hidden;
	position: relative;
	padding: 10px 0;
}

.logo-track {
	display: inline-flex;
	align-items: center;
	gap: 60px;
	animation: scroll 60s linear infinite;
}

.logo-track img {
	max-height: 60px;
	max-width: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to { 
		transform: translateX(-12.5%); /* -100% / 8 repetitions = -12.5% */
	}
}

/* Fade edges */
.Block-Scrolling-As-Seen-In-Logos::before,
.Block-Scrolling-As-Seen-In-Logos::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.Block-Scrolling-As-Seen-In-Logos::before {
	left: 0;
	background: linear-gradient(to right, white, transparent);
}

.Block-Scrolling-As-Seen-In-Logos::after {
	right: 0;
	background: linear-gradient(to left, white, transparent);
}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 768px),
all and (max-device-width: 768px)
{
	.logo-track img {
		max-height: 40px; /* Smaller on mobile */
		max-width: 150px;
	}
	
	.logo-track {
		gap: 30px; /* Less gap on mobile too */
	}
}