.testimonials-slider-section {
	padding: 0;
	background: none;
	overflow: visible;
}

.testimonials-slider-container {
	max-width: 1600px;
	margin: 0 auto;
}

/* Первый слайдер - отзывы */
.testimonials-slider-wrapper {
	position: relative;
	margin-bottom: 60px;
	max-width: 1420px;
	margin-left: auto;
	margin-right: auto;
}

.testimonials-swiper {
	width: 100%;
	padding: 0 60px;
	overflow: hidden;
}

.testimonials-swiper .swiper-wrapper {
	/* overflow: hidden; */
}

.testimonials-swiper .swiper-slide {
	width: 100%;
	height: auto;
	display: flex;
}

.testimonials-swiper .swiper-slide:empty {
	display: none;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px 28px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	min-height: 300px;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

.testimonial-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 20px;
	align-items: start;
	margin-bottom: 20px;
}

.testimonial-avatar-col {
	display: flex;
	align-items: center;
}
.testimonial-avatar_img img{
 border-radius: 50% !important;

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

.testimonial-avatar-placeholder {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ddd;
}

.testimonial-info-col {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.testimonial-date {
	font-size: 14px;
	line-height: 1;
	color: #666;
}

.testimonial-author {
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: #333;
}

.testimonial-rating-col {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

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

.testimonial-stars .star {
	color: #063080;
	font-size: 24px;
	line-height: 1;
}

.testimonial-text-wrapper {
	margin-bottom: 20px;
	flex-grow: 1;
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.testimonial-text.expanded {
	display: block;
	-webkit-line-clamp: unset;
}

.testimonial-toggle-text {
	background: none !important;
	border: none !important;
	color: #063080;
	cursor: pointer;
	font-size: 14px;
	padding: 0 !important;
	margin: 0;
	text-decoration: underline;
	display: inline-block;
	box-shadow: none !important;
	outline: none !important;
}

.testimonial-toggle-text:hover {
	color: #052060;
}

.testimonial-source {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.testimonial-source-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.testimonial-source-link {
	font-size: 14px !important;
	color: #A1A1A1 !important;
	text-decoration: none;
}

.testimonial-source-link:hover {
	text-decoration: underline;
}

.testimonials-slider-wrapper .swiper-button-prev,
.testimonials-slider-wrapper .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: #ffffff;
	border-radius: 50%;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 10;
	margin-top: 0;
}

.testimonials-slider-wrapper .swiper-button-prev {
	left: -25px;
}

.testimonials-slider-wrapper .swiper-button-next {
	right: -25px;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
	width: 50px;
	height: 50px;
	background: #ffffff;
	border-radius: 50%;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonials-slider-wrapper .swiper-button-prev:hover,
.testimonials-slider-wrapper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
	background: #f5f5f5;
}

.testimonials-slider-wrapper .swiper-button-prev::after,
.testimonials-slider-wrapper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
	font-size: 20px;
	font-weight: bold;
}

.testimonials-swiper .swiper-pagination {
	position: relative;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.testimonials-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #D0D0D0;
	opacity: 1;
	margin: 0;
	transition: all 0.3s ease;
	cursor: pointer;
}

.testimonials-swiper .swiper-pagination-bullet-active {
	width: 25px;
	height: 8px;
	border-radius: 4px;
	background: #F25A21;
}

/* Адаптивность */
@media (max-width: 1024px) {
	.testimonials-swiper {
		padding: 0 30px;
	}
	
	.testimonials-slider-wrapper .swiper-button-prev {
		left: -15px;
	}
	
	.testimonials-slider-wrapper .swiper-button-next {
		right: -15px;
	}
	
	.testimonial-header {
		grid-template-columns: auto 1fr;
		gap: 15px;
	}
	
	.testimonial-rating-col {
		grid-column: 1 / -1;
		justify-content: flex-start;
		margin-top: 10px;
	}
}

@media (max-width: 768px) {
	.testimonials-slider-wrapper {
		margin-bottom: 10px;
	}
	
	.testimonials-swiper {
		padding: 0 15px;
	}
	
	.testimonials-slider-wrapper .swiper-button-prev,
	.testimonials-slider-wrapper .swiper-button-next,
	.testimonials-swiper .swiper-button-prev,
	.testimonials-swiper .swiper-button-next,
	.testimonials-prev,
	.testimonials-next {
		display: none !important;
	}
	
	.testimonial-card {
		padding: 30px 20px;
		min-height: 250px;
	}
	
	.testimonial-text {
		font-size: 14px;
	}
	
	.testimonial-header {
		gap: 10px;
	}
	
	.testimonial-avatar,
	.testimonial-avatar-placeholder {
		width: 50px;
		height: 50px;
	}
}
