/*
 * DW Star Ratings — debsway.com
 * Filled: #6D0C18  |  Empty: #EDE6DF  |  Size: 20px
 */

.dw-star-rating {
    display: flex;
    align-items: center;
    justify-content: center;   /* inherits from UAG block text-align */
    gap: 3px;
    margin: 5px 0 4px;
    line-height: 1;
}

.dw-star {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.dw-star--filled {
    fill: #6D0C18;
}

.dw-star--empty {
    fill: #EDE6DF;
}

/* Ensure the block's text-align propagates to the star row */
.uagb-tm__content[style*="text-align: left"]  .dw-star-rating { justify-content: flex-start; }
.uagb-tm__content[style*="text-align: right"] .dw-star-rating { justify-content: flex-end;   }

/* Responsive: stars stay the same size on mobile */
@media (max-width: 767px) {
    .dw-star {
        width: 18px;
        height: 18px;
    }
}