/* Слайдер отзывов Google (включается JS, если карточек больше, чем помещается в ряд). */
.reviews-section .reviews-grid.affmov-rv-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 2px;
}
.reviews-section .reviews-grid.affmov-rv-track::-webkit-scrollbar { display: none; }
.reviews-section .affmov-rv-track > .review-card {
	flex: 0 0 calc((100% - 32px) / 3);
	scroll-snap-align: start;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
/* Автор внизу карточки — на одной линии во всех карточках. */
.reviews-section .affmov-rv-track > .review-card .review-author { margin-top: auto; }
@media (max-width: 1024px) {
	.reviews-section .affmov-rv-track > .review-card { flex-basis: calc((100% - 16px) / 2); }
}
@media (max-width: 680px) {
	.reviews-section .affmov-rv-track > .review-card { flex-basis: 88%; }
}

.affmov-rv-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 28px;
}
.affmov-rv-btn {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border, #D8DCE8);
	background: var(--white, #fff);
	color: var(--navy, #1B2D6B);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	border-radius: 0;
	transition: background .2s, color .2s, border-color .2s, opacity .2s;
}
.affmov-rv-btn:hover:not(:disabled) { background: var(--navy, #1B2D6B); border-color: var(--navy, #1B2D6B); color: #fff; }
.affmov-rv-btn:disabled { opacity: .35; cursor: default; }
.affmov-rv-dots { display: flex; gap: 8px; }
.affmov-rv-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--border, #D8DCE8);
	cursor: pointer;
	transition: background .2s, transform .2s;
}
.affmov-rv-dot.is-active { background: var(--gold, #F5C200); transform: scale(1.2); }

.reviews-section .review-text {
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
