.grs-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
}
.grs-slide {
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  min-width: 300px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.grs-stars {
  font-size: 1.2rem;
  color: #f5b50a;
}
.grs-author {
  font-weight: bold;
  margin-top: 0.5rem;
}
.grs-date {
  font-size: 0.8rem;
  color: #666;
}

/* Space between reviews */


/* Review content box */
.grs-review-content {
  max-height: 120px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  transition: max-height 0.3s ease;
}

/* Read More button */
.grs-read-more {
  display: inline-block;
  color: #0073aa;
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}
.grs-review-content.expanded {
  max-height: none;
}
