.angie-testimonials-slider-wrapper {
	position: relative;
	padding: 0 40px;
}

.angie-testimonials-swiper {
	padding: 20px 10px 50px; /* Space for shadows and pagination */
}

.angie-testimonial-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	min-height: 250px;
}

.angie-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.swiper-slide {
	height: auto; /* Make all slides equal height */
}

.angie-testimonial-stars {
	display: flex;
	gap: 4px;
}

.angie-testimonial-quote {
	font-size: 1.125rem;
	line-height: 1.6;
	color: #333333;
	font-style: italic;
	flex-grow: 1;
}

.angie-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.angie-testimonial-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.angie-testimonial-name {
	font-weight: 600;
	font-size: 1rem;
	color: #111111;
}

.angie-testimonial-role {
	font-size: 0.875rem;
	color: #666666;
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
	color: #111111;
	background: #ffffff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	margin-top: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px;
	font-weight: bold;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev {
	left: 0;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cccccc;
	opacity: 0.5;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #111111;
}