.nuerogrow-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Make all swiper slides stretch to the same height */
.nuerogrow-carousel-wrapper .swiper-slide {
	height: auto;
}

.nuerogrow-carousel-slide {
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	background: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	/* Ensure it fills the newly automatic tall swiper-slide */
}

.nuerogrow-carousel-slide:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nuerogrow-carousel-link-box {
	text-decoration: none;
	color: inherit;
	display: block;
	height: 100%;
	width: 100%;
}

.nuerogrow-carousel-link-box:hover,
.nuerogrow-carousel-link-box:focus {
	outline: none;
	text-decoration: none;
	color: inherit;
}

.nuerogrow-carousel-item-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.nuerogrow-carousel-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.nuerogrow-carousel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nuerogrow-carousel-slide:hover .nuerogrow-carousel-image img {
	transform: scale(1.05);
}

.nuerogrow-carousel-text {
	padding: 20px;
	flex-grow: 1;
}

.nuerogrow-carousel-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	color: #333333;
}

.nuerogrow-carousel-description {
	font-size: 15px;
	line-height: 1.6;
	color: #666666;
	margin: 0;
}

.nuerogrow-carousel-description p {
	margin-bottom: 0;
}

/* Swiper Controls Customization */
.nuerogrow-carousel-wrapper .swiper-button-next,
.nuerogrow-carousel-wrapper .swiper-button-prev {
	color: #333333;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nuerogrow-carousel-wrapper .swiper-button-next::after,
.nuerogrow-carousel-wrapper .swiper-button-prev::after {
	font-size: 18px;
}

/* Pagination Customization */
.nuerogrow-swiper-container {
	padding-bottom: 50px !important;
	/* Add space below slides so dots don't overlap content */
}

.nuerogrow-carousel-wrapper .swiper-pagination {
	bottom: 0px !important;
	/* Move dots all the way to the bottom padding area */
}

.nuerogrow-carousel-wrapper .swiper-pagination-bullet {
	width: 10px;
	/* Larger dot width */
	height: 10px;
	/* Larger dot height */
	margin: 0 6px !important;
	/* Slightly more space between dots */
	background: #999999;
	opacity: 0.6;
}

.nuerogrow-carousel-wrapper .swiper-pagination-bullet-active {
	background: #333333;
	opacity: 1;
	transform: scale(1.2);
	/* Make the active dot slightly bigger */
}