.rating-box{
  max-width:260px;
  font-family:inherit;
  font-size:14px;
  color:#111827;
}

.rating-box__header{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:8px;
  font-weight:600;
}

.rating-box__title{
  flex:1;
}

.rating-box__stars{
  position:relative;
  display:inline-block;
  font-size:16px;
  line-height:1;
  color:#f59e0b; /* sivé hviezdy v pozadí */
  overflow:hidden;
}

.rating-box__stars-bg{
  color:#f59e0b !important; /* svetlo-sivé pozadie */
}

.rating-box__stars-fill{
  position:absolute;
  inset:0;
  white-space:nowrap;
  color:#f59e0b !important; /* tmavšia žltá/oranžová */
  overflow:hidden;
  width:77%; /* 4.6/6 ≈ 77% */
}

.rating-box__score{
  font-weight:700;
}

.rating-box__row{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:6px;
  align-items:center;
  padding:4px 0;
  border-top:1px solid #e5e7eb;
  font-size:14px;
}

.rating-box__row-stars{
  color:#f59e0b; /* sivá hviezda vpravo */
}

.rating-box__row-score{
  font-weight:600;
}