/* ================================
   Reviews Block
   ================================ */

.reviews {
  margin-top: 100px;
}

.reviews__row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.reviews__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-basis: 821px;
}

.reviews__item {
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.reviews__item {
  background: var(--gradients);
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #003d33;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.reviews__header h3 {
  font-size: 32px;
  margin: 0;
}

.reviews__header span {
  font-size: 14px;
  color: #ccc;
}

.reviews__text {
  font-size: 14px;
  margin-bottom: 20px;
  color: white;
  line-height: 1.5;
}

.reviews__lists {
  display: flex;
  gap: 17px;
}

.reviews__lists ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.reviews__lists ul li {
  list-style: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__list-good ul li:before {
  content: "";
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: center / contain no-repeat
    url("/wp-content/themes/winlion/assets/images/pros.png");
}

.reviews__list-bad ul li:before {
  content: "";
  margin-top: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: center / contain no-repeat
    url("/wp-content/themes/winlion/assets/images/cons.png");
}

.reviews__rating {
  display: flex;
  align-items: center;
  background: var(--gradients);
  border-radius: 20px;
  padding: 40px 60px;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 80px;
  width: 100%;
  justify-content: space-between;
  flex-basis: 349px;
}

.reviews__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviews__result {
  font-size: 108px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.reviews__stars_2 {
  display: flex;
  margin-bottom: 27px;
}

.reviews__stars_2 img {
  height: auto;
  max-width: 100%;
}

.reviews__overall {
  font-size: 18px;
  line-height: 1.28;
  color: #fffbff;
  max-width: 153px;
}

.reviews__stars {
  align-items: center;
  display: flex;
  position: relative;
  gap: 23.27px;
  justify-content: center;
  margin: 20px 0;
}

.reviews__stars .star {
  width: 25px;
  height: 25px;
  background: center / contain no-repeat
    url("/wp-content/themes/winlion/assets/images/gold-star.png");
}

.reviews__author-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__author-rating-number {
  color: #fff;
}

.review-stars-inline {
  display: flex;
  gap: 5px;
}

.review-stars-inline .star {
  width: 16px;
  height: 16px;
  background: center / contain no-repeat
    url("/wp-content/themes/winlion/assets/images/gold-star.png");
}

@media screen and (max-width: 768px) {
  .reviews__row {
    flex-direction: column;
    gap: 40px;
  }

  .reviews__items {
    flex-basis: 100%;
    gap: 30px;
  }

  .reviews__item {
    padding: 25px;
  }

  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .reviews__header h3 {
    font-size: 22px;
  }

  .reviews__text {
    font-size: 15px;
  }

  .reviews__lists {
    flex-direction: column;
    gap: 15px;
  }

  .reviews__lists ul li {
    font-size: 14px;
  }

  .reviews__rating {
    position: static;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 30px;
    flex-basis: content;
  }

  .reviews__result {
    font-size: 64px;
  }

  .reviews__overall {
    font-size: 16px;
    max-width: 100%;
  }

  .reviews__stars {
    gap: 15px;
  }

  .review-stars-inline .star {
    width: 14px;
    height: 14px;
  }
}
