/**
 * OcoBoard Reviews — rating token stylesheet.
 *
 * Provides the minimal CSS for .oc-rating stars.
 * Override the colour by setting --oc-rating-color in:
 *   - theme.json > settings > custom > oc > ratingColor
 *   - a Bricks global style variable --oc-rating-color
 *
 * The data-ocb-rating attribute is part of the behaviour contract and
 * must always be present on the root element (used by JS/CSS selectors
 * for conditional display and CLS-free rendering).
 */

.oc-rating {
    color: var(--oc-rating-color, #f59e0b);
    font-style: normal;
    letter-spacing: 0.05em;
    line-height: 1;
    white-space: nowrap;
}
