.pb-reviews-rotator {
	position: relative;
}

.pb-reviews-track {
	position: relative;
	min-height: 190px;
}

.pb-review-card {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(12px);
	transition: opacity 0.32s ease, transform 0.32s ease;
	border: 1px solid rgba(28, 28, 26, 0.08);
	background: rgba(255, 255, 255, 0.92);
	border-radius: 16px;
	padding: 14px 16px;
	pointer-events: none;
}

.pb-review-card.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.pb-review-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.pb-review-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #1f2937;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	flex-shrink: 0;
}

.pb-review-card__name {
	margin: 0;
	font-weight: 600;
	color: #1c1c1a;
	font-size: 14px;
	line-height: 1.2;
}

.pb-review-card__stars {
	margin: 1px 0 0;
	font-size: 13px;
	letter-spacing: 0.04em;
	color: rgba(28, 28, 26, 0.2);
	line-height: 1.1;
}

.pb-review-card__stars .is-on {
	color: #f59e0b;
}

.pb-review-card__text {
	margin: 0;
	color: rgba(28, 28, 26, 0.76);
	line-height: 1.5;
	font-size: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pb-reviews-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 10px;
}

.pb-reviews-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	border: 0;
	background: rgba(28, 28, 26, 0.2);
	padding: 0;
}

.pb-reviews-dot.is-active {
	background: #1c1c1a;
}

.pb-reviews-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid rgba(28, 28, 26, 0.15);
	background: #fff;
	color: #1c1c1a;
	font-size: 18px;
	line-height: 1;
}

.pb-reviews-btn:hover {
	border-color: rgba(28, 28, 26, 0.3);
}

@media (max-width: 640px) {
	.pb-reviews-track {
		min-height: 220px;
	}
	.pb-review-card {
		padding: 12px 14px;
	}
}
