/* ============================================================
   Testimonial Carousel Widget
   ============================================================ */
.tmc-wrap { width: 100%; }

.tmc-swiper { overflow: hidden; }

.tmc-swiper .swiper-wrapper { align-items: stretch; }

.tmc-swiper .swiper-slide {
	height: auto;
	display: flex;
}

/* Card */
.tmc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 32px 28px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
	text-align: center;
}

.tmc-name {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #1a2b5f;
}

.tmc-role {
	margin: 0 0 16px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	color: #1a2b5f;
}

.tmc-divider {
	display: block;
	width: 50px;
	height: 3px;
	border-radius: 2px;
	background-color: #b71a33;
	margin-bottom: 20px;
}

.tmc-quote {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #555;
}

/* Pagination */
.tmc-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 32px;
}

.tmc-dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1a2b5f;
	opacity: 1;
	margin: 0 3px;
	cursor: pointer;
	transition: background .3s ease;
}

.tmc-dots .swiper-pagination-bullet-active {
	background: #b71a33;
}

@media (max-width: 767px) {
	.tmc-card { padding: 24px 20px; }
	.tmc-name { font-size: 16px; }
	.tmc-role { font-size: 14px; }
	.tmc-quote { font-size: 14px; }
}
