/* ============================================================================
   Compact rating — AverageRatingStar (Client/Components).
   One shape everywhere: ★ 4,5 (12)

   Global sheet rather than a companion .razor.css: the component renders from
   SearchNav, listing cards, detail pages and sheets, so no single page scope
   can own it, and a scoped sheet would not reach the Client-project component.
   ============================================================================ */

.rently-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}

/* MudIcon renders .mud-icon-root on the svg and lands Class= there. */
.rently-rating .rently-rating__star {
    font-size: 1.05rem;
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    color: #f59e0b; /* --rently-warning; literal, the palette engine reprojects the token */
}

.rently-rating__avg {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--rently-text-primary, #1f2937);
}

.rently-rating__count {
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--rently-text-tertiary, #64748b);
}
