/* ── Wrapper ────────────────────────────────────────── */
.lah-locations-slider-wrapper {
	width: 100%;
	overflow: visible;
	position: relative; /* anchor for gradient pseudo-elements */
}

/* ── Edge gradients (hidden by default, enabled via Elementor) ── */
.lah-locations-slider-wrapper::before,
.lah-locations-slider-wrapper::after {
	content: '';
	display: none; /* shown when Elementor toggle is on */
	position: absolute;
	top: 0;
	bottom: 0;
	width: var(--lah-edge-width, 150px);
	z-index: 2;
	pointer-events: none;
}

.lah-locations-slider-wrapper::before {
	left: 0;
	background: linear-gradient(to right, var(--lah-edge-color, #ffffff) 0%, transparent 100%);
}

.lah-locations-slider-wrapper::after {
	right: 0;
	background: linear-gradient(to left, var(--lah-edge-color, #ffffff) 0%, transparent 100%);
}

/* ── Swiper container ───────────────────────────────── */
.lah-locations-slider-wrapper .swiper {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	overflow: visible;
}

/* ── Slide card ─────────────────────────────────────── */
.lah-locations-slider-wrapper .swiper-slide {
	position: relative;
	overflow: hidden;
	width: 800px;
	height: 500px;
	border-radius: 16px;
	border: 2px solid #000;
	background: #e0e0e0;
	flex-shrink: 0;
}

/* ── Background image ───────────────────────────────── */
.lah-locations-slider-wrapper .slide-bg-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

/* ── Slide info area (below slider) ─────────────────── */
.lah-locations-slider-wrapper .lah-slide-info {
	text-align: center;
	padding: 30px 20px 10px;
	transition: opacity 0.2s ease;
}

.lah-locations-slider-wrapper .lah-slide-info-title {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	padding: 0;
}

.lah-locations-slider-wrapper .lah-slide-info-content {
	color: #555;
	font-size: 15px;
	line-height: 1.7;
}

.lah-locations-slider-wrapper .lah-slide-info-content p:first-child { margin-top: 0; }
.lah-locations-slider-wrapper .lah-slide-info-content p:last-child  { margin-bottom: 0; }

/* ── Pagination ─────────────────────────────────────── */
.lah-locations-slider-wrapper .swiper-pagination {
	bottom: 12px;
}

.lah-locations-slider-wrapper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: transform 0.2s ease, background 0.2s ease;
}

.lah-locations-slider-wrapper .swiper-pagination-bullet-active {
	background: #fff;
	transform: scale(1.4);
}

/* ── Navigation arrows — above gradient (z-index 3) ─── */
.lah-locations-slider-wrapper .swiper-button-prev,
.lah-locations-slider-wrapper .swiper-button-next {
	color: #fff;
	z-index: 3;
}
