.aprsgj {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.aprsgj .review-summary {
  flex: 0 0 200px;
  text-align: center;
}

.aprsgj .star-row {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 10px;
}

.aprsgj .star-icon {
  width: 20px;
  height: 20px;
}

.aprsgj .review-count {
  font-weight: bold;
  margin-bottom: 4px;
}

.aprsgj .review-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.aprsgj .average-score {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.aprsgj .review-stars {
  text-align: left;
  margin-bottom: 6px;
}

.aprsgj .star-rating {
  display: inline-block;
  float: none;
  margin: 0;
  text-align: left;
}

/* RIGHT SIDE - SWIPER */
.aprsgj .reviews-swiper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.aprsgj .swiper-wrapper {
  display: flex;
}

.aprsgj .review-slide {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: calc(25% - 20px); /* 4 per row minus spacing */
  margin-right: 20px;

  box-sizing: border-box;
  min-height: auto;

}

.aprsgj .review-stars {
  margin-bottom: 5px;
}

.aprsgj .review-date {
  color: gray;
  font-size: 12px;
  margin-bottom: 10px;
}

.aprsgj .review-content {
  font-size: 14px;
  line-height: 1.4;
}

/* Navigation buttons */
.aprsgj .review-prev,
.aprsgj .review-next {
  background: white;
  border-radius: 50%;
  border: 1px solid black;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.aprsgj .review-prev {
  left: -16px;
}

.aprsgj .review-next {
  right: -16px;
}

/* Responsive */
@media (max-width: 992px) {
  .aprsgj .review-slide {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .aprsgj .review-slide {
    width: 100%;
    margin-right: 0;
  }
}
