.reviews-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.review-image-box {
  width: 320px;
  /* aspect-ratio: 4/3; */
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.review-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}