@charset "UTF-8";
/* Основной контейнер */
.ba-slider {
	position: relative;
	width: 100%;
	max-width: 800px;
	aspect-ratio: 8 / 5; /* Соотношение сторон */
	margin: 20px auto;
	overflow: hidden;
	border-radius: 15px;
	user-select: none;
}

/* Общие стили для изображений */
.ba-slider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Слой "После" (верхний) */
.img-after {
	/* Изначально показываем половину */
	clip-path: inset(0 0 0 50%);
}

/* Скрытый ползунок поверх всего */
.ba-range {
	position: absolute;
	inset: 0;
	appearance: none;
	-webkit-appearance: none;
	accent-color: #663300;
	background: rgba(0,0,0, 0);
	cursor: ew-resize;
	z-index: 3;
	margin: 0;
	padding: 0;
}

/* Линия разделителя */
.ba-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: white;
	z-index: 2;
	transform: translateX(-50%);
	pointer-events: none;
	box-shadow: 0 0 10px rgba(0,0,0, .5);
}

/* Кружок на линии */
.ba-line::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23663300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m18 8 4 4-4 4M6 8l-4 4 4 4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0 0 5px rgba(0,0,0, .3);
}