/* Post Rating Widget - Star rating styling */

.post-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 6px 0;
}

.post-rating .rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}

.post-rating .rating-stars svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #f59e0b;
  fill: currentColor;
}

.post-rating .rating-score {
  font-weight: 700;
  color: #0b1220;
}

.post-rating .rating-outof {
  color: #6b7280;
}

.post-rating .rating-count {
  color: #6b7280;
  font-size: 0.95rem;
}
