.plt-testimonials {
	--plt-card-offset: 52px;
	--plt-gap: 24px;
	--plt-slide-width: calc((100% - 48px) / 3);
	--plt-visible: 3;
	direction: rtl;
	width: 100%;
	box-sizing: border-box;
}

.plt-testimonials *,
.plt-testimonials *::before,
.plt-testimonials *::after {
	box-sizing: border-box;
}

.plt-header {
	text-align: center;
}

.plt-heading {
	margin: 0;
	color: #111;
	font-size: clamp(2rem, 4.4vw, 4.1rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.plt-heading-highlight {
	color: #b63b16;
}

.plt-slider {
	margin-top: 42px;
}

.plt-viewport {
	overflow: hidden;
	padding-bottom: var(--plt-card-offset);
	touch-action: pan-y;
}

.plt-track {
	display: flex;
	align-items: flex-start;
	gap: var(--plt-gap);
	transform: translate3d(0, 0, 0);
	transition: transform .55s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

.plt-testimonial-slide {
	display: flex;
	flex: 0 0 var(--plt-slide-width);
	min-width: 0;
}

.plt-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 18px;
	background: #f1f1f1;
	border-radius: 18px;
	text-align: center;
	transform: translateY(0);
	transition: transform .55s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

.plt-is-staggered:not([data-plt-ready="true"]) .plt-testimonial-slide:nth-child(2) .plt-card,
.plt-is-staggered .plt-testimonial-slide.plt-is-active .plt-card {
	transform: translateY(var(--plt-card-offset));
}

.plt-project-image {
	display: block;
	width: 100%;
	height: 165px;
	border-radius: 14px;
	object-fit: cover;
	opacity: 1 !important;
	filter: none !important;
}

.plt-review-title {
	margin: 22px 0 0;
	color: #111;
	font-size: clamp(1.05rem, 1.55vw, 1.4rem);
	font-weight: 800;
	line-height: 1.35;
}

.plt-review-text {
	margin-top: 17px;
	color: #202020;
	font-size: clamp(.84rem, 1vw, 1rem);
	line-height: 1.65;
}

.plt-review-text p {
	margin: 0;
}

.plt-customer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	margin-top: auto;
	padding-top: 22px;
	text-align: right;
}

.plt-avatar {
	display: block;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	opacity: 1 !important;
	filter: none !important;
}

.plt-customer-copy {
	min-width: 0;
}

.plt-customer-name {
	color: #111;
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.35;
}

.plt-customer-role {
	margin-top: 2px;
	color: #666;
	font-size: .75rem;
	line-height: 1.35;
}

.plt-rating {
	direction: ltr;
	display: flex;
	gap: 2px;
	margin-top: 4px;
	font-size: 18px;
	line-height: 1;
}

.plt-star-filled {
	color: #b63b16;
}

.plt-star-empty {
	color: #c9c9c9;
}

.plt-navigation {
	direction: ltr;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 26px;
}

.plt-nav-button {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: transform .2s ease, opacity .2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.plt-nav-button:hover {
	color: #fff;
	transform: translateY(-2px);
}

.plt-nav-button:active {
	transform: scale(.95);
	transition-duration: .1s;
}

.plt-nav-button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.plt-nav-button:disabled {
	cursor: not-allowed;
	opacity: .42;
	transform: none;
}

.plt-nav-button svg {
	display: block;
	width: 55%;
	height: 55%;
}

.plt-prev {
	background: #a9a9a9;
}

.plt-next {
	background: #b63b16;
}

.plt-navigation[hidden] {
	display: none;
}

@media (max-width: 1024px) {
	.plt-testimonials {
		--plt-card-offset: 30px;
		--plt-slide-width: calc((100% - 20px) / 2);
		--plt-visible: 2;
	}
}

@media (max-width: 767px) {
	.plt-testimonials {
		--plt-card-offset: 0px;
		--plt-gap: 12px;
		--plt-slide-width: 100%;
		--plt-visible: 1;
	}

	.plt-heading {
		font-size: clamp(1.75rem, 9vw, 2.75rem);
	}

	.plt-slider {
		margin-top: 24px;
	}

	.plt-viewport {
		overflow: visible;
		padding-bottom: 0;
	}

	.plt-track {
		flex-direction: column;
		gap: var(--plt-gap);
		transform: none !important;
		transition: none;
		will-change: auto;
	}

	.plt-testimonial-slide {
		flex: 0 0 auto;
		width: 100%;
		min-width: 100%;
	}

	.plt-card {
		min-height: 0;
		padding: 12px 18px 14px;
		border-radius: 14px;
	}

	.plt-project-image {
		height: clamp(96px, 31vw, 132px);
		border-radius: 12px;
	}

	.plt-review-title {
		margin-top: 12px;
		font-size: clamp(.98rem, 4.5vw, 1.16rem);
		line-height: 1.3;
	}

	.plt-review-text {
		margin-top: 7px;
		font-size: clamp(.73rem, 3.2vw, .88rem);
		line-height: 1.4;
	}

	.plt-customer {
		gap: 10px;
		padding-top: 12px;
	}

	.plt-avatar {
		width: 44px;
		height: 44px;
	}

	.plt-customer-name {
		font-size: .82rem;
	}

	.plt-customer-role {
		font-size: .7rem;
	}

	.plt-rating {
		margin-top: 3px;
		font-size: 16px;
	}

	.plt-navigation {
		margin-top: 16px;
	}

	.plt-nav-button {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.plt-track,
	.plt-card,
	.plt-nav-button {
		transition-duration: .01ms !important;
	}
}
