.wsdlc-logo-carousel {
	position: relative;
	--wsdlc-gap: 24px;
	--wsdlc-logo-max-height: 80px;
	--wsdlc-transition-duration: 450ms;
	--wsdlc-arrow-size: 42px;
}

.wsdlc-logo-carousel__viewport {
	overflow: hidden;
	width: 100%;
}

.wsdlc-logo-carousel__track {
	display: flex;
	align-items: center;
	gap: var(--wsdlc-gap);
	will-change: transform;
	transition: transform var(--wsdlc-transition-duration) ease;
}

.wsdlc-logo-carousel__slide {
	box-sizing: border-box;
	flex: 0 0 var(--wsdlc-slide-width, 100%);
	min-width: 0;
}

.wsdlc-logo-carousel__slide-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.wsdlc-logo-carousel__link,
.wsdlc-logo-carousel__slide-inner {
	width: 100%;
}

.wsdlc-logo-carousel__link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.wsdlc-logo-carousel__image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: var(--wsdlc-logo-max-height);
	object-fit: contain;
	margin-inline: auto;
}

.wsdlc-logo-carousel__navigation {
	pointer-events: none;
}

.wsdlc-logo-carousel__arrow {
	pointer-events: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--wsdlc-arrow-size);
	height: var(--wsdlc-arrow-size);
	border: 0;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.92);
	color: #ffffff;
	cursor: pointer;
	font-size: 0;
	line-height: 1;
	padding: 0;
	text-align: center;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
	transition: opacity 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.wsdlc-logo-carousel__arrow span {
	position: absolute;
	inset: 0;
	display: block;
	line-height: 0;
	font-size: 0;
}

.wsdlc-logo-carousel__arrow span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
}

.wsdlc-logo-carousel__arrow--prev span::before {
	transform: translate(-50%, -50%) rotate(-135deg);
}

.wsdlc-logo-carousel__arrow--next span::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.wsdlc-logo-carousel__arrow:hover,
.wsdlc-logo-carousel__arrow:focus-visible {
	background: rgba(2, 6, 23, 1);
}

.wsdlc-logo-carousel__arrow:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.wsdlc-logo-carousel__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.wsdlc-logo-carousel__arrow--prev {
	left: 0;
}

.wsdlc-logo-carousel__arrow--next {
	right: 0;
}

.wsdlc-logo-carousel--has-arrows {
	padding-inline: calc(var(--wsdlc-arrow-size) + 10px);
}

.wsdlc-logo-carousel.is-static .wsdlc-logo-carousel__track {
	transform: none !important;
}

.wsdlc-logo-carousel.is-static .wsdlc-logo-carousel__navigation,
.wsdlc-logo-carousel--no-arrows .wsdlc-logo-carousel__navigation {
	display: none;
}

@media (max-width: 980px) {
	.wsdlc-logo-carousel--has-arrows {
		padding-inline: calc(var(--wsdlc-arrow-size) + 6px);
	}
}

@media (max-width: 767px) {
	.wsdlc-logo-carousel {
		--wsdlc-arrow-size: 36px;
	}

	.wsdlc-logo-carousel--has-arrows {
		padding-inline: 0;
		padding-bottom: calc(var(--wsdlc-arrow-size) + 12px);
	}

	.wsdlc-logo-carousel__arrow {
		top: auto;
		bottom: 0;
		transform: none;
	}

	.wsdlc-logo-carousel__arrow--prev {
		left: calc(50% - var(--wsdlc-arrow-size) - 8px);
	}

	.wsdlc-logo-carousel__arrow--next {
		right: calc(50% - var(--wsdlc-arrow-size) - 8px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wsdlc-logo-carousel__track,
	.wsdlc-logo-carousel__arrow {
		transition: none;
	}
}
