.custom-review-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.review-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.review-content {
  padding: 15px;
}

.review-author {
  font-weight: bold;
  margin-bottom: 5px;
}

.review-rating {
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #333;
}

.custom-review-pagination {
  margin-top: 25px;
  text-align: center;
}

.custom-review-pagination .page-num {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  background: #eee;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
}

.custom-review-pagination .page-num.current {
  background: #000;
  color: #fff;
}
