/* ============================================================
   SLV Testimonial Carousel — Front-end Styles
   ============================================================ */

/* Wrapper */
.slv-tc-wrapper {
	width: 100%;
	text-align: center;
	padding: 80px 20px;
	box-sizing: border-box;
	overflow: hidden;
}

/* Quote icon */
.slv-tc-icon-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 28px;
}

.slv-tc-quote-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #7b0000;
}

.slv-tc-quote-icon svg {
	fill: #ffffff;
	display: block;
}

/* Section heading */
.slv-tc-heading {
	font-size: 2rem;
	font-weight: 700;
	color: #0d1b4b;
	margin: 0 0 40px;
	line-height: 1.2;
}

/* Carousel viewport */
.slv-tc-carousel {
	position: relative;
	overflow: hidden;
}

/* Slide track */
.slv-tc-track {
	position: relative;
	width: 100%;
}

/* Individual slides */
.slv-tc-slide {
	display: none;
	animation: slvFadeIn 0.45s ease-in-out;
}

.slv-tc-slide.active {
	display: block;
}

@keyframes slvFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Avatar */
.slv-tc-avatar {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.slv-tc-avatar img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #0d1b4b;
}

/* Quote text */
.slv-tc-text {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #444444;
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

/* Author block */
.slv-tc-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-bottom: 10px;
}

.slv-tc-name {
	display: block;
	font-weight: 700;
	font-size: 0.9375rem;
	color: #0d1b4b;
	letter-spacing: 0.01em;
}

.slv-tc-role {
	display: block;
	font-size: 0.875rem;
	color: #888888;
}

/* Navigation bar */
.slv-tc-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

/* Arrow buttons */
.slv-tc-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid #0d1b4b;
	background: transparent;
	color: #0d1b4b;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	padding: 0;
	line-height: 1;
}

.slv-tc-arrow:hover,
.slv-tc-arrow:focus-visible {
	background-color: #0d1b4b;
	color: #ffffff;
	outline: 3px solid #0d1b4b;
	outline-offset: 2px;
}

.slv-tc-arrow svg {
	pointer-events: none;
}

/* Dot navigation */
.slv-tc-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.slv-tc-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background-color: #cccccc;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.slv-tc-dot.active {
	background-color: #0d1b4b;
	transform: scale(1.2);
}

.slv-tc-dot:focus-visible {
	outline: 2px solid #0d1b4b;
	outline-offset: 2px;
}

/* Responsive */
@media (max-width: 767px) {
	.slv-tc-heading {
		font-size: 1.5rem;
	}

	.slv-tc-text {
		font-size: 0.9375rem;
	}
}
