.slider-wrapper {
	position: relative;
}
.slider {
	overflow: hidden;
}
.slider-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 10px;
	padding-right: calc((100% - 20px) / 2);
	cursor: grab;
	scrollbar-width: none;
}
.slider-track::-webkit-scrollbar {
	display: none;
}
.slider-track.dragging {
	cursor: grabbing;
	user-select: none;
}
.slide {
	flex: 0 0 calc((100% - 20px) / 2);
	scroll-snap-align: start;
	background: #eee;
}
/* PAGINACJA */
.slider-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
}
.slider-dot {
	width: 10px;
	height: 10px;
	background: #ccc;
	border-radius: 50%;
	cursor: pointer;
	transition: 0.3s;
}
.slider-dot.active {
	background: #000;
}
/* mobile */
@media (max-width: 768px) {
	.slide {
		flex: 0 0 80%;
	}
}