.review-card {
  width: min(900px, 100%);
}

.review-stars {
  display: grid !important;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  width: 100%;
  gap: 6px;
}

.review-stars button {
  width: auto !important;
  min-width: 0;
  height: 42px;
  padding: 0;
  font-weight: 700;
}

@media (max-width: 700px) {
  .review-stars {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .review-stars button {
    min-height: 42px;
  }
}
