.cst-widget {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 48px 40px 40px;
	background: #ffffff;
	border: 1px solid #eef0f2;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
}

.cst-widget * {
	box-sizing: border-box;
}

.cst-bg {
	position: absolute;
	inset: 0;
	color: #eceff1;
	pointer-events: none;
	z-index: 0;
}

.cst-bg svg {
	width: 100%;
	height: 100%;
}

.cst-content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
}

.cst-stars {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-bottom: 14px;
}

.cst-star {
	width: 18px;
	height: 18px;
	color: #2dd4bf;
}

.cst-star-empty {
	color: #d7dadc;
}

.cst-heading {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: #16181a;
}

.cst-quote {
	margin: 0 0 18px;
	font-size: 26px;
	line-height: 1.4;
	color: #6b7280;
	font-weight: 500;
	transition: opacity .25s ease;
}

.cst-name {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: #16181a;
	transition: opacity .25s ease;
}

.cst-role {
	margin: 0;
	font-size: 14px;
	color: #9aa1a9;
	transition: opacity .25s ease;
}

.cst-avatars {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-top: 36px;
	flex-wrap: wrap;
}

.cst-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	padding: 0;
	border: 3px solid transparent;
	background: #f1f2f4;
	cursor: pointer;
	overflow: hidden;
	opacity: 0.55;
	transform: scale(0.92);
	transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
	flex-shrink: 0;
}

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

.cst-avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
	color: #6b7280;
	background: #e5e7eb;
}

.cst-avatar:hover {
	opacity: 0.85;
}

.cst-avatar.is-active {
	opacity: 1;
	transform: scale(1);
	border-color: #2dd4bf;
}

.cst-fade-out {
	opacity: 0 !important;
}

@media (max-width: 640px) {
	.cst-widget {
		padding: 32px 20px 28px;
		border-radius: 16px;
	}
	.cst-quote {
		font-size: 20px;
	}
	.cst-avatar {
		width: 52px;
		height: 52px;
	}
	.cst-avatars {
		gap: 12px;
	}
}
