/* Lazy Block: logo-slider. Vars from base style.css. */

.logos {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos__track {
	display: flex;
	gap: 26px;
	width: max-content;
	animation-name: sibgeocom-logos-scroll;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.logos:hover .logos__track {
	animation-play-state: paused;
}

@keyframes sibgeocom-logos-scroll {
	to { transform: translateX(-50%); }
}

.logo {
	flex: none;
	width: 170px;
	height: 84px;
	border: 1px solid var(--hair);
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	filter: grayscale(1);
	opacity: .75;
	transition: .2s;
}

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

.logo:hover {
	filter: none;
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.logos__track { animation: none; }
	.logos { overflow-x: auto; }
}
