/* Structural styles for Advanced Image Carousel widget */
.aic-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.swiper-container.aic-swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.aic-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.aic-img-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: block;
	transition: all 0.3s ease;
}

.aic-img-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: background-color 0.3s ease;
	pointer-events: none;
}

.aic-slide-img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}

/* Equal Height Images mode */
.aic-equal-height-yes .aic-swiper {
	display: flex;
}
.aic-equal-height-yes .aic-slide {
	height: auto;
}
.aic-equal-height-yes .aic-img-wrap {
	flex-grow: 1;
	height: 100%;
}
.aic-equal-height-yes .aic-slide-img {
	height: 100%;
	object-fit: cover;
}

/* Hover effect classes */
.aic-zoom-effect-yes .aic-img-wrap:hover .aic-slide-img {
	transform: scale(1.08);
}

/* Navigation arrows customizations */
.aic-carousel-wrapper .swiper-button-prev,
.aic-carousel-wrapper .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.aic-carousel-wrapper .swiper-button-prev::after,
.aic-carousel-wrapper .swiper-button-next::after {
	font-family: swiper-icons;
	font-size: 20px;
}

.aic-carousel-wrapper .swiper-button-prev {
	left: 15px;
}

.aic-carousel-wrapper .swiper-button-next {
	right: 15px;
}

/* Pagination Dots */
.aic-carousel-wrapper .swiper-pagination {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 10;
}

.aic-carousel-wrapper .swiper-pagination-bullet {
	display: inline-block;
	border-radius: 50%;
	transition: all 0.3s ease;
}

/* Slide Content wrapper styles */
.aic-content-wrap {
	width: 100%;
	padding: 12px 10px;
	text-align: center;
}

.aic-slide-title {
	font-size: 1.1em;
	margin: 0 0 5px 0;
	font-weight: 600;
}

.aic-slide-desc {
	font-size: 0.9em;
	margin: 0;
	color: #666;
}
