.hfc-cycle {
	position: relative;
	width: 100%;
	overflow: hidden;
	contain: layout paint;
	--hfc-gap: 48px;
	--hfc-logo-height: 52px;
	--hfc-speed: 95;
	--hfc-distance: 0px;
	--hfc-mask-size: 80px;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--hfc-mask-size),
		#000 calc(100% - var(--hfc-mask-size)),
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0,
		#000 var(--hfc-mask-size),
		#000 calc(100% - var(--hfc-mask-size)),
		transparent 100%
	);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.hfc-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation-name: hfc-scroll;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 30s;
}

.hfc-set {
	display: flex;
	align-items: center;
	gap: var(--hfc-gap);
	flex-shrink: 0;
	padding-right: var(--hfc-gap);
}

.hfc-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.hfc-logo {
	display: block;
	height: var(--hfc-logo-height);
	width: auto;
	max-width: none;
	object-fit: contain;
}

.hfc-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.hfc-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.hfc-cycle:hover .hfc-track,
.hfc-cycle.hfc-focus-paused .hfc-track,
.hfc-cycle.hfc-offscreen .hfc-track,
.hfc-cycle.hfc-document-hidden .hfc-track {
	animation-play-state: paused;
}

.hfc-cycle:not(.hfc-offscreen):not(.hfc-document-hidden) .hfc-track {
	will-change: transform;
}

@keyframes hfc-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(calc(-1 * var(--hfc-distance)), 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hfc-track {
		animation: none !important;
	}

	.hfc-cycle {
		-webkit-mask-image: none;
		mask-image: none;
	}
}

@media (hover: none), (pointer: coarse), (max-width: 1024px) {
	.hfc-cycle {
		-webkit-mask-image: none;
		mask-image: none;
	}
}
