.s3t {
	--s3t-space: 24px;
	--s3t-visible: var(--s3t-visible-desktop, 1);
	--s3t-arrow-color: #ffffff;
	--s3t-arrow-opacity: 0.3;
	display: flex;
	align-items: center;
	gap: 4px;
	width: 100%;
}

.s3t-viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.s3t-track {
	display: flex;
	align-items: center;
	gap: var(--s3t-space);
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.s3t-item {
	flex: 0 0 calc((100% - (var(--s3t-visible) - 1) * var(--s3t-space)) / var(--s3t-visible));
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--s3t-space);
	box-sizing: border-box;
}

.s3t-item a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.s3t-item img {
	max-width: min(100%, var(--s3t-max-image-width, 140px));
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.s3t .s3t-nav,
.s3t button.s3t-nav {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: none !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none;
	color: var(--s3t-arrow-color);
	opacity: var(--s3t-arrow-opacity);
	cursor: pointer;
	font-size: inherit;
	letter-spacing: normal;
	line-height: 1;
	text-transform: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.s3t .s3t-nav:hover,
.s3t .s3t-nav:focus,
.s3t .s3t-nav:active,
.s3t button.s3t-nav:hover,
.s3t button.s3t-nav:focus,
.s3t button.s3t-nav:active {
	background: transparent !important;
	border: none !important;
	box-shadow: none;
	color: #9ca3af !important;
	opacity: min(1, calc(var(--s3t-arrow-opacity) + 0.35));
	outline: none;
}

.s3t .s3t-nav:focus-visible,
.s3t button.s3t-nav:focus-visible {
	outline: 2px solid #9ca3af;
	outline-offset: 2px;
}

.s3t .s3t-nav .material-icons-outlined,
.s3t button.s3t-nav .material-icons-outlined {
	font-size: 40px;
	line-height: 1;
	color: inherit;
}

@media (max-width: 768px) {
	.s3t {
		--s3t-visible: var(--s3t-visible-mobile, 1);
	}

	.s3t .s3t-nav .material-icons-outlined,
	.s3t button.s3t-nav .material-icons-outlined {
		font-size: 32px;
	}
}

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