.rs-slider {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-radius: 4px;
	--rs-height: auto;
}

.rs-slider-track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
}

.rs-slide {
	flex: 0 0 100%;
	max-width: 100%;
	height: var(--rs-height);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rs-slide-img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.rs-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.rs-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}

.rs-dot.is-active {
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.rs-slider:only-child .rs-dots {
	display: none;
}
