/* Home section 03 — Prestigious clients logo marquee (Figma node 1:1218) */

.clients {
	background: var(--color-bg-light);
	padding: 40px 20px;
}

.clients__inner,
body .clients__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.clients__eyebrow p {
	font-weight: 600;
	font-size: 16px;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-navy);
	margin: 0;
}

.clients__slider {
	width: 100%;
	max-width: var(--container-width);
	height: 56px;
	overflow: hidden;
	position: relative;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.clients__track {
	display: flex;
	align-items: center;
	gap: 40px;
	width: max-content;
	animation: clients-marquee 32s linear infinite;
}

.clients__slider:hover .clients__track {
	animation-play-state: paused;
}

.clients__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
}

.clients__logo img {
	height: 100%;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

@keyframes clients-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 640px) {
	.clients {
		padding: 30px 20px;
	}

	.clients__track {
		gap: 28px;
	}

	.clients__logo {
		height: 28px;
	}
}
