/* ============================================================
   RATING WIDGET (template-parts/rating-widget.php)
   ============================================================ */

.rating-summary__col {
	text-align: center;
	flex-shrink: 0;
}

.rating-summary__stars {
	justify-content: center;
	margin: 4px 0;
}

.rating-summary__count {
	font-size: var(--font-size-xs);
	color: var(--txt-muted);
}

.rating-bar-row__star-num {
	width: 10px;
	font-size: 12px;
}
.rating-bar-row__star-glyph {
	font-size: 12px;
	color: var(--clr-warning);
}
.rating-bar-row__count {
	width: 30px;
	font-size: 11px;
	color: var(--txt-muted);
}

.rate-box {
	background: var(--bg-surface-2);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: var(--sp-5);
	text-align: center;
}
.rate-box__prompt {
	font-size: var(--font-size-sm);
	color: var(--txt-secondary);
	margin-bottom: var(--sp-3);
}
.rate-box__stars-static {
	font-size: 28px;
	justify-content: center;
	margin-bottom: var(--sp-3);
}
.rate-box__msg {
	margin-top: var(--sp-3);
	font-size: var(--font-size-sm);
	display: none;
}
.rate-box__msg.is-shown { display: block; }
