/* Review data is rendered by js/components/reviews.js. Existing card geometry stays in global.css. */
.rating-stars {
    --rating-fill: 100%;
    display: inline-block;
    position: relative;
    width: max-content;
    color: #dfe3da;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
}
.rating-stars::before {
    content: "★★★★★";
    background: linear-gradient(90deg, #f6b900 0 var(--rating-fill), #dfe3da var(--rating-fill) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rating-stars--large { font-size: 24px; letter-spacing: 3px; }
.Reviews_item-top-left-all .rating-stars { margin-bottom: 4px; }
.Reviews_item-btn { border: 0; background: transparent; padding: 0; cursor: pointer; }
