.overtop-carousel {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	overflow: visible;
	background: #f4f0ea;
	border-radius: 12px;
}

.overtop-carousel__viewport {
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
}

.overtop-carousel__track {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	transition: transform 0.45s ease;
	will-change: transform;
}

.overtop-carousel__slide {
	box-sizing: border-box;
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
}

.overtop-carousel__slide img,
.overtop-carousel__link {
	display: block;
	width: 100%;
	height: auto;
}

.overtop-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 252, 248, 0.92);
	box-shadow: 0 6px 18px rgba(40, 32, 24, 0.16);
	color: #1a1a1a;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.overtop-carousel__arrow:hover {
	background: #fff;
	box-shadow: 0 8px 22px rgba(40, 32, 24, 0.2);
}

.overtop-carousel__arrow:active {
	transform: translateY(-50%) scale(0.96);
}

.overtop-carousel__arrow span {
	display: block;
	margin-top: -2px;
}

.overtop-carousel__arrow--prev {
	left: 14px;
}

.overtop-carousel__arrow--next {
	right: 14px;
}

.overtop-carousel__dots {
	position: absolute;
	right: 0;
	bottom: 16px;
	left: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 10px;
	pointer-events: none;
}

.overtop-carousel__dot {
	pointer-events: auto;
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease;
}

.overtop-carousel__dot:hover {
	transform: scale(1.15);
	background: rgba(255, 255, 255, 0.85);
}

.overtop-carousel__dot.is-active {
	background: #fff;
	transform: scale(1.2);
}

.overtop-carousel__empty {
	margin: 2rem;
	text-align: center;
	color: #666;
}

@media (max-width: 900px) {
	.overtop-carousel__arrow {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}

	.overtop-carousel__arrow--prev {
		left: 10px;
	}

	.overtop-carousel__arrow--next {
		right: 10px;
	}
}
