.vestita-logos-slideshow {
	--vestita-logos-height: 80px;
	--vestita-logos-speed: 40s;
	--vestita-logos-gap: 48px;

	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
}

.vestita-logos-slideshow__viewport {
	overflow: hidden;
	width: 100%;
}

.vestita-logos-slideshow__track {
	display: flex;
	width: max-content;
	animation: vestita-logos-marquee var(--vestita-logos-speed) linear infinite;
}

.vestita-logos-slideshow:hover .vestita-logos-slideshow__track,
.vestita-logos-slideshow:focus-within .vestita-logos-slideshow__track {
	animation-play-state: paused;
}

.vestita-logos-slideshow__group {
	display: flex;
	align-items: center;
	gap: var(--vestita-logos-gap);
	padding-right: var(--vestita-logos-gap);
}

.vestita-logos-slideshow__item {
	flex: 0 0 auto;
}

.vestita-logos-slideshow__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--vestita-logos-height);
	text-decoration: none;
}

.vestita-logos-slideshow__image {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
	max-height: var(--vestita-logos-height);
	object-fit: contain;
}

.vestita-logos-slideshow__empty {
	margin: 0;
	font-size: 14px;
	color: #666;
}

@keyframes vestita-logos-marquee {
	from {
		transform: translateX(0);
	}

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

@media (prefers-reduced-motion: reduce) {
	.vestita-logos-slideshow__track {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
		gap: var(--vestita-logos-gap);
	}

	.vestita-logos-slideshow__group[aria-hidden="true"] {
		display: none;
	}

	.vestita-logos-slideshow__group {
		flex-wrap: wrap;
		justify-content: center;
		padding-right: 0;
	}
}

@media (max-width: 640px) {
	.vestita-logos-slideshow {
		--vestita-logos-gap: 32px;
	}

	.vestita-logos-slideshow__image {
		max-width: 140px;
	}
}
