.op-carousel {
	position: relative;
	overflow: hidden;
	margin: 1.5em auto;
	max-width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 560px;
	border-radius: 10px;
	background: #f4f4f4;
	outline: none;
}
.op-carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.35s ease;
}
.op-carousel-slide {
	flex: 0 0 100%;
	height: 100%;
}
.op-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.op-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	border: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.op-carousel-nav:hover {
	background: rgba(0, 0, 0, 0.7);
}
.op-carousel-prev {
	left: 12px;
}
.op-carousel-next {
	right: 12px;
}
.op-carousel-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	display: flex;
	justify-content: center;
	gap: 7px;
	z-index: 2;
}
.op-carousel-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	padding: 0;
}
.op-carousel-dot.is-active {
	background: #fff;
}
.op-carousel-counter {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 10px;
	z-index: 2;
}
@media (max-width: 480px) {
	.op-carousel-nav {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}
}
