/* ==========================================================================
   Bercarlo — carousel.css
   Self-contained styles for the news carousel. Replaces the original Swiper
   stylesheet while keeping the same .swiper-* class names so markup and JS
   stay familiar.
   ========================================================================== */

.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	box-sizing: content-box;
}

.swiper-slide {
	flex-shrink: 0;
	position: relative;
}

/* Navigation arrows drawn with CSS (no sprite dependency) */
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: 38px;
	height: 38px;
	margin-top: -19px;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	display: block;
}

.swiper-button-prev::after {
	transform: rotate(-135deg);
	margin-left: 4px;
}

.swiper-button-next::after {
	transform: rotate(45deg);
	margin-right: 4px;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}
