/* ==========================================================================
   Testimonial Carousel (.sentio-tc)
   ==========================================================================
   Extracted from frontend.css during the Batch 8 mechanical extraction
   (2026-04-18). Behavior-preserving.
   Uses Swiper (vendor: swiper + e-swiper). PHP render() also emits a
   `<script type="application/ld+json">` schema.org Review metadata block
   — documented exception preserved verbatim in PHP.

   `.sentio-tc` prefix shared with tag-cloud (C3) + tidycal-schedule (B2) —
   distinct CSS blocks, line-range extracted.
   ========================================================================== */

.sentio-tc {
	position: relative;
	overflow: hidden;
}

.sentio-tc__slide {
	padding: 30px;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* --- Text --- */

.sentio-tc__text {
	margin-bottom: 16px;
	font-size: 15px;
	line-height: 1.6;
}

.sentio-tc__text--clamped {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--sentio-tc-lines, 3);
	overflow: hidden;
}

.sentio-tc__read-more {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 600;
	color: #6EC1E4;
	text-decoration: none;
	cursor: pointer;
}

.sentio-tc__read-more:hover {
	text-decoration: underline;
}

/* --- Footer (image inline / stacked) --- */

.sentio-tc__footer {
	display: flex;
	align-items: center;
	margin-top: auto;
}

.sentio-tc--layout-image_stacked .sentio-tc__footer {
	flex-direction: column;
}

/* --- Image --- */

.sentio-tc__image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	margin-right: 12px;
}

.sentio-tc--layout-image_above .sentio-tc__image,
.sentio-tc--layout-image_stacked .sentio-tc__image {
	margin-right: 0;
	margin-bottom: 12px;
}

.sentio-tc__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Cite --- */

.sentio-tc__cite {
	display: flex;
	flex-direction: column;
}

.sentio-tc__name {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.3;
}

.sentio-tc__title {
	font-size: 13px;
	color: #999;
	line-height: 1.3;
}

/* --- Star Rating (Differentiator #1) --- */

.sentio-tc__stars {
	display: inline-flex;
	gap: 2px;
	font-size: 16px;
	margin-bottom: 12px;
	line-height: 1;
}

.sentio-tc__star--filled {
	color: #FFC107;
}

.sentio-tc__star--empty {
	color: #E0E0E0;
}

/* --- Navigation Arrows --- */

.sentio-tc__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: rgba(255,255,255,.9);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,.12);
	font-size: 24px;
	color: #333;
	cursor: pointer;
	transition: background .2s, box-shadow .2s;
}

.sentio-tc__arrow:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.sentio-tc__arrow svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.sentio-tc__arrow--prev { left: 10px; }
.sentio-tc__arrow--next { right: 10px; }

.sentio-tc__arrow.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}

/* --- Pagination --- */

.sentio-tc__pagination {
	text-align: center;
	margin-top: 20px;
}

.sentio-tc__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	margin: 0 4px;
	cursor: pointer;
	transition: background .2s;
}

.sentio-tc__dot--active {
	background: #333;
}

.sentio-tc__pagination--fraction {
	font-size: 14px;
	color: #999;
}

.sentio-tc__pagination--progress {
	position: relative;
	height: 3px;
	background: #eee;
	border-radius: 2px;
	overflow: hidden;
}

/* --- Autoplay Progress Bar (Differentiator #5) --- */

.sentio-tc__autoplay-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: rgba(0,0,0,.08);
	z-index: 10;
	overflow: hidden;
}

.sentio-tc__autoplay-bar span {
	display: block;
	height: 100%;
	width: 0;
	background-color: #6EC1E4;
	transition: width linear;
}

/* --- Centered Highlight (Differentiator #6) --- */

.sentio-tc--centered .swiper-slide {
	transition: transform .4s ease, opacity .4s ease;
