/* Carousel Layout */
.carousel {
	overflow: hidden;
	width: 100%;
	padding: 1rem;
}
.carousel-track {
	display: flex;
	transition: transform 0.6s ease;
	will-change: transform;
}
.item {
	min-width: 100%;
	padding: 0 1rem;
	box-sizing: border-box;
}

/* Pfeile */
.prevCarousel,
.nextCarousel {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: clamp(36px, 4vw, 48px);
	height: clamp(36px, 4vw, 48px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,0.6);
	cursor: pointer;
	z-index: 10;
	padding: 0;
}
.prevCarousel { left: 5rem; }
.nextCarousel { right: 5rem; }
.prevCarousel::after { content: "‹"; font-size: clamp(20px, 2.5vw, 30px); color: white; }
.nextCarousel::after { content: "›"; font-size: clamp(20px, 2.5vw, 30px); color: white; }

/* Dots */
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}
.carousel-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: #ccc;
	cursor: pointer;
}
.carousel-dots button.active {
	background: #333;
}