.horizontal-scroll-content__track {
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.horizontal-scroll-content__track::-webkit-scrollbar {
	display: none;
}

.horizontal-scroll-content__dots {
	position: relative;
	overflow: hidden;
	transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.horizontal-scroll-content__dots-inner {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: max-content;
	will-change: transform;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

button.horizontal-scroll-content__dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0.5rem 1rem !important;
	height: auto;
	min-height: 40px;
	border: 0;
	border-radius: 999px;
	background-color: rgba(20, 87, 240, 0.12);
	color: #262626;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	transition: background-color 0.3s ease, color 0.3s ease;
}

button.horizontal-scroll-content__dot:hover {
	background-color: rgba(20, 87, 240, 0.22);
}

button.horizontal-scroll-content__dot.is-active {
	background-color: rgba(20, 87, 240, 0.12);
	color: #262626;
}

button.horizontal-scroll-content__dot[data-dot-prev] {
	width: 40px;
	padding: 0.5rem !important;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.3s ease, pointer-events 0.3s ease;
}

button.horizontal-scroll-content__dot[data-dot-prev].is-active {
	opacity: 0;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.horizontal-scroll-content__dots,
	.horizontal-scroll-content__dots-inner,
	button.horizontal-scroll-content__dot {
		transition: none;
	}
}
