.esc-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 400px;
}

.esc-carousel-wrapper.esc-fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100vh;
	z-index: 9999;
}

/* RESPONSIVE ARROW HIDING FACILITY */
@media (min-width: 1025px) {
	.esc-hidden-desktop {
		display: none !important;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.esc-hidden-tablet {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.esc-hidden-mobile {
		display: none !important;
	}
}

/* SWIPER CONTAINER OVERRIDES */
.esc-swiper-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	/* Swiper needs overflow hidden on container */
	position: relative;
}

/* SLIDE LAYOUT */
.esc-carousel-slide {
	/* Swiper sets width, we handle content layout */
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	/* Ensure background if needed */
	box-sizing: border-box;
}

/* IMAGE */
.esc-carousel-image,
.esc-carousel-slide img {
	width: 100%;
	height: 100%;
	/* Force fill */
	object-fit: cover;
	display: block;
}

/* TEXT BLOCK */
.esc-carousel-text-block {
	padding: 10px 0;
	text-align: center;
}

/* TITLE & DESCRIPTION */
.esc-carousel-title {
	margin: 0 0 10px 0;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.3;
	color: #000000;
	transition: color 0.3s ease;
}

.esc-carousel-description {
	margin: 0;
	font-size: 1.1em;
	line-height: 1.6;
	color: #000000;
	transition: color 0.3s ease;
}

/* LINE */
.esc-carousel-line {
	width: 100%;
	height: 5px;
	background: #000000;
	margin-top: 10px;
	transition: background-color 0.3s ease;
}

/* RESPONSIVE TEXT */
@media (max-width: 768px) {
	.esc-carousel-title {
		font-size: 1.8em;
	}

	.esc-carousel-description {
		font-size: 1em;
	}
}

@media (max-width: 480px) {
	.esc-carousel-title {
		font-size: 1.5em;
	}

	.esc-carousel-description {
		font-size: 0.9em;
	}

	/* Mobile Arrows: Ensure they are visible and not too small */
	.esc-arrow-prev,
	.esc-arrow-next {
		width: 30px !important;
		height: 30px !important;
		display: flex !important;
		/* Force display if hidden by default swiper styles */
	}

	.esc-arrow-prev::after,
	.esc-arrow-next::after {
		font-size: 14px !important;
	}

	/* Force arrows to be always visible on mobile/tablet even if set to 'Hover' mode */
	.esc-carousel-wrapper.esc-arrows-hover .esc-arrow-prev,
	.esc-carousel-wrapper.esc-arrows-hover .esc-arrow-next {
		opacity: 1 !important;
	}
}

/* NAVIGATION ARROWS (Customizing Swiper default arrows) */
.esc-arrow-prev,
.esc-arrow-next {
	width: 40px !important;
	/* Override swiper defaults */
	height: 40px !important;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff !important;
	border-radius: 50%;
	border-radius: 50%;
	transition: background-color 0.3s, opacity 0.3s ease, transform 0.3s ease;
	z-index: 10;
	/* Ensure on top */
}

.esc-arrow-prev::after,
.esc-arrow-next::after {
	font-size: 18px !important;
	/* Swiper arrow icon size */
	font-weight: bold;
}

.esc-arrow-prev:hover,
.esc-arrow-next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* MODE: HOVER VISIBILITY */
.esc-carousel-wrapper.esc-arrows-hover .esc-arrow-prev,
.esc-carousel-wrapper.esc-arrows-hover .esc-arrow-next {
	opacity: 0;
}

.esc-carousel-wrapper.esc-arrows-hover:hover .esc-arrow-prev,
.esc-carousel-wrapper.esc-arrows-hover:hover .esc-arrow-next {
	opacity: 1;
}

/* MODE: OUTSIDE ARROWS */
.esc-arrows-outside .swiper-button-prev {
	left: -50px !important;
}

.esc-arrows-outside .swiper-button-next {
	right: -50px !important;
}

/* Ensure wrapper doesn't clip arrows when outside */
.esc-carousel-wrapper.esc-arrows-outside {
	overflow: visible !important;
}

.esc-carousel-wrapper.esc-arrows-outside .esc-swiper-container {
	overflow: visible !important;
}

/* OVERLAY ON HOVER */