/* Compact rating widget used only by software archive rows. */
.rating-box {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 7px 11px;
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	min-width: 58px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.rating-box:hover {
	border-color: var(--success);
	box-shadow: 0 2px 6px rgba(0, 168, 107, 0.12);
}

.rating-num {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 800;
	color: var(--success-dark);
	line-height: 1;
	letter-spacing: -0.02em;
}

.rating-votes {
	font-size: 10px;
	color: var(--text-3);
	font-weight: 600;
	line-height: 1;
}
