.avis-guest-suite {
  margin: 30px 0 30px 0;
}

.gva-view-grid-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.item-columns {
  flex: 1 1 calc(33% - 20px);
  box-sizing: border-box;
  padding: 0 !important;
}

.review-card {
  border: 1px solid #eaeaea;
  border-radius: 15px;
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-rating {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
}

.star {
  font-size: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 2px;
  position: relative;
  background-color: lightgray;
  color: white;
}

.star.filled {
  color: white;
  background-color: #C562AE;
}

.star.half {
  color: white;
  overflow: hidden;
  background-color: #C562AE;
}

.star.half::before {
  content: "\2605";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-color: lightgray;
  color: lightgray;
}

.rating-text {
  font-size: 16px;
  color: #666666;
  margin-left: 5px;
}

.review-content {
  flex-grow: 1;
}

.comment-text {
  display: inline;
}

.comment-preview {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.comment-full {
  display: none;
}

.review-footer {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.user-name {
  margin: 0;
  font-weight: bold;
  font-size: 1.1em;
}

.publication-date {
  margin: 0;
  font-size: 0.9em;
  color: #777;
}

.reviews-section {
  text-align: center;
  margin-bottom: 20px;
}

.reviews-title {
  margin-top: 20px;
  font-size: 1.5em;
}

.reviews-subtitle {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.see-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-size: 0.9em;
}

.see-more-btn:focus {
  outline: none;
}

@media (max-width: 767px) {
  .gva-view-grid-inner .item-columns:nth-child(n+2) {
    display: none;
  }
  .gva-view-grid-inner .item-columns {
    flex: 1 1 100%;
  }
}
