.pgr-reviews-section {
	--pgr-bg: #f7f7f7;
	--pgr-white: #ffffff;
	--pgr-text: #222222;
	--pgr-muted: #6f6f6f;
	--pgr-border: #e6e6e6;
	--pgr-star: #f4c542;
	--pgr-primary: #f9b12d;
	--pgr-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
	color: var(--pgr-text);
}

.pgr-reviews-section * {
	box-sizing: border-box;
}

.pgr-reviews-container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.pgr-reviews-title {
	text-align: center;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 36px;
	letter-spacing: -0.02em;
}

.pgr-reviews-slider-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.pgr-reviews-viewport {
	overflow: hidden;
	width: 100%;
}

.pgr-reviews-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.pgr-review-slide {
	flex: 0 0 calc(100% / 3);
	padding: 0 10px;
}

.pgr-review-card {
	background: var(--pgr-white);
	border: 1px solid var(--pgr-border);
	border-radius: 16px;
	min-height: 245px;
	padding: 22px 20px 18px;
	box-shadow: var(--pgr-shadow);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.pgr-review-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 14px;
}

.pgr-review-stars span {
	color: var(--pgr-star);
	font-size: 22px;
	line-height: 1;
}

.pgr-review-text {
	font-size: 1.05rem;
	line-height: 1.55;
	color: #2a2a2a;
	margin-bottom: 24px;
}

.pgr-review-text p:last-child {
	margin-bottom: 0;
}

.pgr-review-name {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.pgr-review-meta {
	color: #3a3a3a;
	font-size: 0.98rem;
	line-height: 1.4;
	margin-bottom: 18px;
}

.pgr-review-time {
	color: var(--pgr-muted);
	font-size: 0.96rem;
}

.pgr-slider-btn {
	border: none;
	width: 46px;
	height: 46px;
	min-width: 46px;
	border-radius: 999px;
	background: var(--pgr-white);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pgr-primary);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	z-index: 3;
}

.pgr-slider-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.pgr-slider-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

.pgr-slider-btn svg {
	width: 20px;
	height: 20px;
}

.pgr-reviews-cta {
	text-align: center;
	margin-top: 34px;
}

.pgr-reviews-cta a {
	display: inline-block;
	color: var(--pgr-primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.2rem;
	transition: opacity 0.2s ease;
}

.pgr-reviews-cta a:hover {
	opacity: 0.8;
}

.pgr-reviews-dots {
	display: none;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.pgr-reviews-dots .pgr-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d7d7d7;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.pgr-reviews-dots .pgr-dot.active {
	background: var(--pgr-primary);
	transform: scale(1.15);
}

@media (max-width: 1024px) {
	.pgr-review-slide {
		flex: 0 0 calc(100% / 2);
	}
}

@media (max-width: 768px) {
	.pgr-reviews-section {
		padding: 56px 16px 40px;
	}

	.pgr-reviews-slider-wrapper {
		gap: 10px;
	}

	.pgr-review-slide {
		flex: 0 0 100%;
		padding: 0 4px;
	}

	.pgr-review-card {
		min-height: 220px;
		padding: 20px 18px;
	}

	.pgr-review-text {
		font-size: 1rem;
	}

	.pgr-slider-btn {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.pgr-reviews-dots {
		display: flex;
	}
}