.bm-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 8px;
}

.bm-slider-track {
	display: flex;
	width: 100%;
	transition: transform 0.5s ease-in-out;
}

.bm-slide {
	flex: 0 0 100%;
	width: 100%;
}

.bm-slide a {
	display: block;
}

.bm-slide picture,
.bm-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.bm-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.bm-arrow:hover {
	background: rgba(0, 0, 0, 0.7);
}

.bm-prev { left: 15px; }
.bm-next { right: 15px; }

.bm-dots {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 2;
}

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

.bm-dot.active {
	background: #fff;
}

@media (max-width: 600px) {
	.bm-arrow {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
}
