@charset "UTF-8";
.review-card {
  background-color: hsl(222, 62%, 16%);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  text-align: center;
}
.review-card .text {
  color: hsla(222, 62%, 95%, 0.85);
  display: inline-block;
  font-size: 12px;
  line-height: 1.6em;
  margin: 24px 0;
  text-align: left;
}
.review-card .player {
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}
.review-card .score::before {
  content: "★★★★★";
  background: -webkit-gradient(linear, left top, right top, from(hsl(71, 96%, 60%)), to(hsl(222, 62%, 25%)));
  background: linear-gradient(90deg, hsl(71, 96%, 60%) calc(var(--rating) / 5 * 100%), hsl(222, 62%, 25%) calc(var(--rating) / 5 * 100%));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
