.rw-1094-container {
	display: flex;
	align-items: center;
	gap: 15px;
	font-family: sans-serif;
}

.rw-1094-avatars {
	display: flex;
	align-items: center;
}

.rw-1094-avatar {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 2px solid #fff;
	overflow: hidden;
	margin-left: -10px;
	background-color: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.rw-1094-avatar:first-child {
	margin-left: 0;
}

.rw-1094-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rw-1094-counter {
	background-color: #111;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	z-index: 10;
}

.rw-1094-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rw-1094-stars {
	display: flex;
	gap: 2px;
	font-size: 18px;
	position: relative;
	line-height: 1;
}

.rw-1094-star {
	display: inline-block;
}

.rw-1094-star.half {
	position: relative;
	display: inline-block;
}

.rw-1094-star.half::after {
	content: '\2606'; /* Empty star overlay if needed, or we use clip-path on the filled star */
	position: absolute;
	left: 0;
	top: 0;
	color: inherit;
}

/* Fallback for half star cross-browser */
@supports (clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%)) {
	.rw-1094-star.half {
		position: relative;
	}
	.rw-1094-star.half::before {
		content: '\2606';
		position: absolute;
		left: 0;
		top: 0;
	}
	.rw-1094-star.half {
		clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
	}
}

.rw-1094-desc {
	font-size: 14px;
	color: #666;
}