.gva-view-grid-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 35px !important;
}

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

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

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

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

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

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

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

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

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

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

.comment-text {
  margin: 0px 0px 10px 0px !important;
  font-size: 0.9em;
  color: #777;
}

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

.user-name {
  margin: 0 !important;
  font-weight: bold;
  font-size: 1.1em;
  color: #1D2424 !important;
}

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

.reviews-section {
  text-align: left;
  margin: 30px 0px 30px 0px;
}

.gva-view-grid .reviews-section .post-title-fix {
  color: #A7A4A4 !important;
  font-family: 'Inter';
  font-size: 1.05rem !important;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.gva-view-grid .reviews-section .post-title {
  padding: 0;
  margin-bottom: 10px !important;
  display: block;
  line-height: 32px;
  font-size: 24px;
  font-weight: 500;
  color: #18212e;
  word-wrap: break-word;
}

.comment-preview {
  display: inline;
}

.comment-full {
  display: none;
}

.see-more-btn {
  background: none;
  border: none;
  color: #004382;
  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%;
  }
  .gva-view-grid .reviews-section h3.post-title {
    text-align: left !important;
  }
}
