.tcb-carousel {
	position: relative;
	max-width: 700px;
	margin: 30px auto;
	overflow: hidden;
	font-family: inherit;
}

.tcb-carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.tcb-slide {
	flex: 0 0 100%;
	box-sizing: border-box;
	padding: 10px;
}

.tcb-slide-inner {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tcb-stars {
	margin-bottom: 12px;
	font-size: 18px;
}

.tcb-star {
	color: #ddd;
}

.tcb-star.is-filled {
	color: #f5b301;
}

.tcb-message {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	font-style: italic;
	margin-bottom: 20px;
}

.tcb-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.tcb-author-photo {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.tcb-author-info {
	text-align: left;
}

.tcb-author-name {
	display: block;
	font-weight: 600;
	color: #111;
}

.tcb-author-designation {
	display: block;
	font-size: 13px;
	color: #777;
}

.tcb-carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 10px;
}

.tcb-prev,
.tcb-next {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
}

.tcb-prev:hover,
.tcb-next:hover {
	background: #f0f0f0;
}

.tcb-dots {
	display: flex;
	gap: 8px;
}

.tcb-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ddd;
	border: none;
	cursor: pointer;
	padding: 0;
}

.tcb-dot.is-active {
	background: #333;
}

.tcb-no-testimonials {
	text-align: center;
	color: #888;
	font-style: italic;
}
