.eic-carousel-wrapper {
	position: relative;
	width: 100%;
}

.eic-carousel-wrapper .eic-swiper {
	width: 100%;
	padding-bottom: 40px; /* room for pagination dots */
	box-sizing: border-box;
}

.eic-carousel-wrapper .swiper-slide {
	height: auto;
	display: flex;
	flex-direction: column;
}

.eic-slide-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	border-radius: 8px;
}

.eic-slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eic-slide-content {
	padding: 16px 4px;
	text-align: center;
}

.eic-slide-title {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.3;
	color: #1a1a1a;
}

.eic-slide-desc {
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.6;
	color: #666666;
}

.eic-slide-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 4px;
	background-color: #3861fb;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: opacity 0.2s ease;
}

.eic-slide-btn:hover {
	opacity: 0.85;
	color: #ffffff;
}

/* Navigation arrows */
.eic-carousel-wrapper .swiper-button-next,
.eic-carousel-wrapper .swiper-button-prev {
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	color: #ffffff;
	transition: background-color 0.2s ease;
}

.eic-carousel-wrapper .swiper-button-next:hover,
.eic-carousel-wrapper .swiper-button-prev:hover {
	background-color: rgba(0, 0, 0, 0.65);
}

.eic-carousel-wrapper .swiper-button-next:after,
.eic-carousel-wrapper .swiper-button-prev:after {
	font-size: 16px;
	font-weight: 700;
}

/* Pagination dots */
.eic-carousel-wrapper .swiper-pagination {
	position: absolute;
	bottom: 8px;
}

.eic-carousel-wrapper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cccccc;
	opacity: 1;
	margin: 0 4px;
	transition: background 0.2s ease;
}

.eic-carousel-wrapper .swiper-pagination-bullet-active {
	background: #3861fb;
}

@media (max-width: 767px) {
	.eic-slide-image {
		height: 220px;
	}
}
