
.roots-testimonials-slider {
	position: relative;
	max-width: 1800px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 0 40px;
	overflow: visible;
}

.roots-testimonials-slider {
	position: relative;
	max-width: 1800px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 0 40px;
	overflow: visible;
}

.testimonials-wrapper {
	display: flex;
	overflow: hidden;
	gap: 80px;
	margin: 0 auto;
	padding: 0 125px;
	max-width: 1500px;
	/* Control the max width of the testimonials area */
	transition: transform .3s ease-in-out;
	position: relative;
}

.testimonial-item {
	flex: 1;
	min-width: calc(( 100% - 240px ) / 3);
	background: #fff;
	border-radius: 25px;
	padding: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
	position: relative;
	margin-top: 80px;
	margin-bottom: 20px;
}

.testimonial-image {
	width: 120px;
	/* Reduced from 180px */
	height: 120px;
	/* Reduced from 180px */
	position: absolute;
	top: -50px;
	/* Adjusted for new size */
	right: -50px;
	/* Adjusted for new size */
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
	z-index: 2;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-content {
	margin-top: 60px;
}

.testimonial-text {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0px;
	color: #333;
	text-align: left;
}

.testimonial-author {
	font-family: "Sonlight", cursive;
	font-size: 75px;
	text-align: left;
	color: #000;
	margin-top: -20px;
	margin-bottom: -10px;
	line-height: 1.1;
}

.nav-buttons {
	position: absolute;
	left: 50%;
	top: calc(50% + 250px);
	/* Position below the middle testimonial */
	transform: translate(-50%, -50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.nav-prev, .nav-next {
	width: 44px;
	height: 44px;
	border: 2px solid #d3d3d3;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	font-size: 24px;
	color: #d3d3d3;
}

.nav-prev:hover, .nav-next:hover {
	border-color: #a9a9a9;
	color: #a9a9a9;
}

@media (max-width: 768px) {
	.testimonial-item {
		flex: 0 0 calc(100% - 40px);
		min-width: calc(100% - 40px);
	}
	
	.roots-testimonials-slider {
		padding: 80px 20px 40px;
	}
}
