/*
 * Layout and typography adjustments for review cards on both shop and category pages.
 *
 * These rules enforce consistent card heights, remove reliance on product
 * thumbnails, and limit the review text to two lines for a tidy appearance.
 * A mobile breakpoint reduces the font size slightly to optimise legibility on
 * small screens.
 */

.cshop-review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cshop-review__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cshop-review__content {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.25rem;
}

@media (max-width: 580px) {
  .cshop-review__content {
    font-size: 0.85rem;
  }
}