.product-reviews {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.product-review {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
}

.product-review-stars {
  color: #ff9700;
  font-size: 21px;
  letter-spacing: 2px;
  line-height: 1;
}

.product-review-text {
  margin: 14px 0 0;
  color: #333;
  line-height: 1.75;
  white-space: pre-wrap;
}

.product-review-images {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.product-review-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f3f3;
}

.product-review-empty {
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  color: #777;
  text-align: center;
}

@media (max-width: 620px) {
  .product-review {
    padding: 17px;
  }

  .product-review-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
