.tc-wrap {
	display: flex;
	align-items: stretch;
	gap: 24px;
}

/* ---------- Column 1: Overall Rating (fixed, not part of the scroll) ---------- */

.tc-rating-panel {
	flex: 0 0 calc((100% - (24px * 3)) / 4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #101820;
	border-radius: 4px;
	padding: 32px 24px;
}

.tc-rating-value {
	font-family: 'TiemposFine', serif;
	font-weight: 300;
	font-size: 70px;
	line-height: 1;
	color: #ffffff;
}
.tc-rating-out-of {
	font-size: 32px;
	color: rgba(255, 255, 255, 0.6);
}

.tc-stars {
	position: relative;
	display: inline-block;
	font-size: 40px;
	line-height: 1;
	letter-spacing: 6px;
	margin-top: 16px;
}
.tc-stars-bg {
	color: rgba(255, 255, 255, 0.25);
}
.tc-stars-fg {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #FFC107;
}

.tc-rating-label {
	font-family: 'Rand', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 8px;
}

/* ---------- Columns 2-4: scrollable testimonials ---------- */

.tc-carousel-col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tc-carousel-wrap {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.tc-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px;
	flex: 1;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.tc-carousel::-webkit-scrollbar {
	display: none;
}

.tc-tile {
	--tc-gap: 24px;
	scroll-snap-align: start;
	flex: 0 0 calc((100% - (var(--tc-gap) * (var(--tc-visible) - 1))) / var(--tc-visible));
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: #f5f5f5;
	border-radius: 4px;
	padding: 32px 24px;
}

.tc-tile-category {
	display: none;
	align-self: flex-start;
	font-family: 'Rand', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ffffff;
	background: #3253FF;
	border-radius: 999px;
	padding: 4px 12px;
}

.tc-tile-meta {
	font-family: 'Rand', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #3253FF;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.tc-tile-sep {
	margin: 0 6px;
	color: #999999;
}

.tc-tile-quote {
	font-family: 'TiemposFine', serif;
	font-weight: 300;
	font-style: italic;
	font-size: 18px;
	line-height: 1.5;
	color: #101820;
}

.tc-carousel-arrow {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid #101820;
	background: #fff;
	cursor: pointer;
}
.tc-carousel-arrow:hover {
	background: #101820;
	color: #fff;
}

.tc-empty {
	color: #666666;
	font-style: italic;
}

@media (max-width: 768px) {
	.tc-wrap {
		flex-direction: column;
	}
	.tc-rating-panel {
		flex-basis: auto;
	}
}
