.partner-ticker {
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
			mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.partner-ticker__track {
	display: flex;
	width: max-content;
	animation: partner-ticker-scroll 30s linear infinite;
}

.partner-ticker__group {
	display: flex;
	flex-shrink: 0;
}

.partner-ticker__item {
	display: inline-flex;
	align-items: center;
	padding: 0 2.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	font-style: oblique;
	opacity: .5;
}

.partner-ticker:hover .partner-ticker__track {
	animation-play-state: paused;
}

@keyframes partner-ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.partner-ticker__track { animation: none; }
	.partner-ticker { overflow-x: auto; }
}