.vltc-carousel,
.vltc-carousel *,
.vltc-section-heading,
.vltc-section-heading * {
	box-sizing: border-box;
}

.vltc-section-heading {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto 4px;
	padding: 0 24px 12px;
	text-align: center;
}

.vltc-section-heading h2 {
	margin: 0;
	padding: 0;
	font: inherit;
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: #172033;
}

.vltc-section-heading h2::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin: 15px auto 0;
	background: var(--vltc-accent, #0b244d);
	border-radius: 999px;
}

.vltc-carousel {
	--vltc-accent: #0b244d;
	--vltc-gap: 24px;
	--vltc-visible: var(--vltc-desktop, 3);
	--vltc-basis: var(--vltc-desktop-basis, calc(33.333333% - 16px));
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 18px 56px 10px;
	font-family: inherit;
	color: #172033;
	-webkit-tap-highlight-color: transparent;
}

.vltc-viewport {
	overflow: hidden;
	width: 100%;
	padding: 16px 2px 26px;
	touch-action: pan-y;
}

.vltc-track {
	display: flex;
	align-items: stretch;
	gap: var(--vltc-gap);
	width: 100%;
	will-change: transform;
}

.vltc-slide {
	flex: 0 0 var(--vltc-basis);
	min-width: 0;
	height: auto;
	margin: 0;
}

.vltc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 310px;
	overflow: hidden;
	padding: 28px 28px 25px;
	background: linear-gradient(145deg, #ffffff 0%, #fbfcff 100%);
	border: 1px solid rgba(19, 37, 73, 0.1);
	border-radius: 22px;
	box-shadow: 0 14px 34px rgba(24, 39, 75, 0.1);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.vltc-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: var(--vltc-accent);
}

.vltc-card:hover {
	transform: translateY(-5px);
	border-color: rgba(19, 37, 73, 0.18);
	box-shadow: 0 20px 44px rgba(24, 39, 75, 0.15);
}

.vltc-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 44px;
	margin-bottom: 12px;
}

.vltc-stars {
	display: flex;
	gap: 3px;
	padding-top: 4px;
	font-size: 17px;
	line-height: 1;
	color: #d5d9e2;
}

.vltc-stars .is-filled {
	color: #f5a623;
	text-shadow: 0 1px 2px rgba(164, 100, 0, 0.16);
}

.vltc-quote-mark {
	height: 44px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 0.82;
	color: var(--vltc-accent);
	opacity: 0.16;
}

.vltc-copy {
	flex: 1 1 auto;
	margin: 0 0 25px;
	font-size: 16px;
	line-height: 1.75;
	color: #4b5568;
}

.vltc-copy p {
	margin: 0 0 0.85em;
}

.vltc-copy p:last-child {
	margin-bottom: 0;
}

.vltc-customer {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid rgba(19, 37, 73, 0.1);
}

.vltc-avatar {
	flex: 0 0 58px;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	overflow: hidden;
	background: var(--vltc-accent);
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(11, 36, 77, 0.12), 0 6px 14px rgba(24, 39, 75, 0.15);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #fff;
}

.vltc-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	border-radius: 50%;
}

.vltc-person {
	min-width: 0;
}

.vltc-person h3 {
	margin: 0 0 3px;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
	color: #172033;
}

.vltc-person p {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
	color: #727b8d;
}

.vltc-controls {
	pointer-events: none;
	position: absolute;
	inset: 0;
}

.vltc-arrow {
	pointer-events: auto;
	position: absolute;
	top: 50%;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	background: #fff;
	border: 1px solid rgba(19, 37, 73, 0.14);
	border-radius: 50%;
	box-shadow: 0 8px 22px rgba(24, 39, 75, 0.14);
	cursor: pointer;
	font: inherit;
	font-size: 22px;
	line-height: 1;
	color: var(--vltc-accent);
	transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.vltc-arrow-left {
	left: 0;
}

.vltc-arrow-right {
	right: 0;
}

.vltc-arrow:hover,
.vltc-arrow:focus-visible {
	background: var(--vltc-accent);
	color: #fff;
	transform: translateY(-50%) scale(1.06);
	box-shadow: 0 10px 26px rgba(24, 39, 75, 0.2);
}

.vltc-arrow:focus-visible {
	outline: 3px solid rgba(245, 166, 35, 0.45);
	outline-offset: 3px;
}

.vltc-empty {
	padding: 18px;
	background: #f6f7f7;
	border-left: 4px solid #0b244d;
}

@media (max-width: 1023px) {
	.vltc-carousel {
		--vltc-visible: var(--vltc-tablet, 2);
		--vltc-basis: var(--vltc-tablet-basis, calc(50% - 10px));
		--vltc-gap: 20px;
		padding-right: 50px;
		padding-left: 50px;
	}

	.vltc-card {
		min-height: 295px;
	}
}

@media (max-width: 767px) {
	.vltc-section-heading {
		padding: 0 14px 6px;
	}

	.vltc-section-heading h2 {
		font-size: clamp(25px, 8vw, 32px);
	}

	.vltc-section-heading h2::after {
		width: 52px;
		margin-top: 12px;
	}

	.vltc-carousel {
		--vltc-visible: var(--vltc-mobile, 1);
		--vltc-basis: var(--vltc-mobile-basis, 100%);
		--vltc-gap: 16px;
		padding: 8px 8px 68px;
	}

	.vltc-viewport {
		padding: 12px 2px 20px;
	}

	.vltc-card {
		min-height: 0;
		padding: 24px 22px 22px;
		border-radius: 18px;
	}

	.vltc-copy {
		font-size: 15px;
		line-height: 1.7;
	}

	.vltc-controls {
		top: auto;
		bottom: 8px;
		display: flex;
		justify-content: center;
		gap: 12px;
		height: 44px;
	}

	.vltc-arrow {
		position: static;
		width: 42px;
		height: 42px;
		transform: none;
	}

	.vltc-arrow:hover,
	.vltc-arrow:focus-visible {
		transform: scale(1.05);
	}
}


@media (prefers-reduced-motion: reduce) {
	.vltc-card,
	.vltc-arrow {
		transition-duration: 0.01ms !important;
	}
}
