/* carousel.css -- companion to carousel.js. Chrome (arrows/dots) only;
   each site keeps its own .slider.responsive sizing/aspect-ratio rules
   (image cropping behavior is a per-site content call, not shared). */

.slider.responsive {
	position: relative;
}
.carousel-viewport {
	overflow: hidden;
}
.carousel-track {
	display: flex;
	transition: transform 0.4s ease;
}
.carousel-slide {
	box-sizing: border-box;
	padding: 0 6px;
}
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}
.carousel-arrow:hover { background: rgba(0, 0, 0, 0.7); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}
.carousel-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: #ccc;
	padding: 0;
	cursor: pointer;
}
.carousel-dot.active { background: #666; }

@media screen and (max-width: 600px) {
	.carousel-arrow { display: none; }
}
