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

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

.testimonial-stars {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin-bottom: 20px;
}

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

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

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

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

.testimonials-swiper .swiper-slide {
	width: 100%;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 30px;
	font-style: italic;
}

.testimonial-author {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.testimonial-company {
	font-size: 14px;
	color: #666;
}

.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-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
	background: #f5f5f5;
}

.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: #063080;
}

/* Второй слайдер - логотипы */
.logos-slider-wrapper {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	overflow: visible;
	padding: 20px 0;
}

.logos-swiper {
	width: 100%;
	overflow: visible;
}

.logos-swiper .swiper-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.logo-slide {
	width: auto !important;
	max-width: 256px;
	height: auto;
	cursor: pointer;
	transition: transform 0.3s ease, opacity 0.3s ease;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-slide:hover {
	transform: scale(1.05);
	opacity: 0.8;
}

.logo-card {
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid transparent;
	padding: 20px;
	box-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	width: 200px;
	margin: 0 10px;
	transition: border-color 0.3s ease;
}

.logo-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Рамка по классу, который ставится из JS по активному слайду первого слайдера */
.logo-slide.logo-slide-sync-active .logo-card {
	border-color: #063080;
}

/* Адаптивность */
@media (max-width: 768px) {
	.testimonials-slider-wrapper {
		margin-bottom: 10px;
	}
	
	.testimonials-swiper {
		padding: 0 40px;
	}
	
	.testimonial-card {
		padding: 30px 20px;
		min-height: 250px;
	}
	
	.testimonial-text {
		font-size: 16px;
	}
	
	.logo-card {
		width: 150px;
		height: 100px;
		padding: 15px;
	}
}
