.testimonial-carousel {
	--tc-navy: #072f56;
	--tc-orange: #e86449;
	width: 100%;
	background: none;
	color: var(--tc-navy);
}

.testimonial-carousel .tc-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.testimonial-carousel .tc-track::-webkit-scrollbar {
	display: none;
}

.testimonial-carousel .tc-card {
	display: flex;
	flex: 0 0 calc((100% - 16px) / 2);
	width: calc((100% - 16px) / 2);
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	min-height: 300px;
	padding: 32px;
	border: 1px solid #e4e4e4;
	border-radius: 12px;
	background: #fff;
	scroll-snap-align: start;
}

.testimonial-carousel .tc-quote {
	margin: 0 0 30px;
	padding: 0;
	border: 0;
}

.testimonial-carousel blockquote.tc-quote::before {
	display: none;
	content: none;
}

.testimonial-carousel .tc-quote p {
	margin: 0;
	color: var(--tc-navy);
	font-size: 22px;
	line-height: 1.45;
}

.testimonial-carousel .tc-quote p::before {
	display: block;
	margin-bottom: 14px;
	color: var(--tc-orange);
	content: "\201C";
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 700;
	line-height: .55;
}

.testimonial-carousel .tc-quote p::after {
	content: none;
}

.testimonial-carousel .tc-name {
	display: block;
	color: var(--tc-navy);
	font-style: normal;
	font-weight: 700;
}

.testimonial-carousel .tc-org {
	margin: 4px 0 0;
	color: #59697a;
}

.testimonial-carousel .tc-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 20px;
}

.testimonial-carousel .tc-arrow {
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--tc-navy);
	border-radius: 50%;
	background: #fff;
	color: var(--tc-navy);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.testimonial-carousel .tc-arrow:disabled {
	opacity: .3;
	cursor: default;
}

.testimonial-carousel .tc-dots {
	display: flex;
	gap: 8px;
}

.testimonial-carousel .tc-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #b6bec6;
	cursor: pointer;
}

.testimonial-carousel .tc-dot.active {
	background: var(--tc-orange);
}

.testimonial-carousel.tc-static .tc-controls {
	display: none;
}

@media (max-width: 767px) {
	.testimonial-carousel .tc-card {
		flex-basis: 78%;
		padding: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.testimonial-carousel .tc-track { scroll-behavior: auto; }
}
