.full-content.hidden {
    display: none;
}
.testimonial-avatar
.hidden-review-item {
    display: none;
}
.hidden-content {
    display: none;
}
.view-more {
    background: none;
    border: none;
    color: #fff !important;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    font-weight:700;
    text-decoration: underline;
}
.ksm-heading {text-align:center;}
  .ksm-testimonial-wrapper {
    max-width: 1600px;
    width:100%;/* Adjust as needed */
    margin: 0 auto;
    padding: 15px;
    background-color: #444; 
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    gap: 15px; /* Adjust the space between reviews */
}
.testimonial-top-wrapper {
  display: flex;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.hidden-review {
    display: none;
}
.testimonial-single {
    flex: 1 0 calc(50% - 2px); /* Two columns */
    padding: 10px;
    border: 1px dashed #ddd; /* Separator line */
}
.ksm-star {
    display: inline-block;
    width: 30px;  /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    background-size: cover;
}

.ksm-full-star {
    background-image: url('full-star.svg');
}

.ksm-empty-star {
    background-image: url('empty-star.svg');
}


.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.testimonial-tagline {
    font-style: italic;
    color: #fff;
  display: block;
}
.testimonial-avatar {
  width: 30%;
}
  .testimonial-details {
  width: 70%;
}
.testimonial-rating .ksm-stars {
    color: #d68126; /* Star color */
    font-size: 20px;
}

.testimonial-date {
    font-size: 14px;
    color: #999;
}

.testimonial-content {
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
}
  .top-two-reviews .ksm-stars {
  height: 30px !important;
  width: 30px !important;
  font-size: 30px !important;
}
  .ksm-testimonial-wrapper [class^="ksm-icon-"]::before, .ksm-testimonial-wrapper [class*=" ksm-icon-"]::before {
  display: inline-block;
  width: auto;
  margin: 0;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  speak: none;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ksm-testimonial-wrapper .ksm-icon-star-empty::before {
  content: 'ee';

}
.latest-reviews-wrapper {
  background-color: #444;
}
.ksm-reviews-summary-wrapper {
  background-color: #c0c0c0;
  padding: 2rem;
  border-radius: 20px;
} 
.ksm-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding-top: 5rem;
  padding-bottom: 5rem;
}

.ksm-reviews-grid .testimonial-single {
    flex: 0 1 calc(33.333% - 20px);
    border:1px dashed #fff;
}

@media (max-width: 768px) {
    .ksm-reviews-grid .testimonial-single {
        flex: 0 1 100%;
    }
}

.ksm-review-text-wrapper {
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.ksm-review-text-wrapper.ksm-expanded {
  max-height: 1000px;
}

.ksm-toggle-button {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: none;
  color: #0073aa;
  font-weight: bold;
  cursor: pointer;
}
/* Hide full content until "View Full Review" is clicked */
.hidden-content {
  display: none;
}

/* Style the toggle button */
.view-more {
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
  padding: 5px;
  font-size: 14px;
  text-decoration: underline;
}

/* Still useful for full review list view (not latest 3) */
.hidden-review-item {
  display: none;
}




/* Styles for screens smaller than 992px */
@media (max-width: 992px) {
    .testimonial-single {
        flex-basis: 100%; /* One column */
    }
    .ksm-testimonial-wrapper {display:block; }
}