.alp-snippet-slider {
	position: relative;
	width: 100%;
}

.alp-snippet-slider--single {
	width: 100%;
}

.alp-snippet-slider__viewport {
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
}

.alp-snippet-slider.is-dragging .alp-snippet-slider__track {
	transition: none;
}

.alp-snippet-slider.is-dragging {
	user-select: none;
}

.alp-snippet-slider__track {
	display: flex;
	width: 100%;
	transition: transform 0.45s ease;
	will-change: transform;
}

.alp-snippet-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
}

.alp-snippet-slider__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.alp-snippet-slider__dot {
	width: 0.65rem;
	height: 0.65rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(124, 58, 237, 0.35);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.alp-snippet-slider__dot.is-active,
.alp-snippet-slider__dot[aria-selected="true"] {
	background: #a855f7;
	transform: scale(1.15);
}

.alp-snippet-slider__dot:focus-visible {
	outline: 2px solid #a855f7;
	outline-offset: 2px;
}

.alp-snippet-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.55);
	color: #fff;
	cursor: pointer;
}

.alp-snippet-slider__arrow--prev {
	left: 0.75rem;
}

.alp-snippet-slider__arrow--next {
	right: 0.75rem;
}

.alp-snippet-slider__arrow:focus-visible {
	outline: 2px solid #a855f7;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.alp-snippet-slider__track {
		transition: none;
	}
}
