.grs-slider {
    display: flex;
    flex-wrap: wrap;
}

.grs-review {
    box-sizing: border-box;
    padding: 15px;
    width: 33.333%; /* Adjust to ensure 3 reviews per slide */
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, .13), 0 0 2px 0 rgba(0, 0, 0, .05);
    border: none;
    background-color: white;
    backdrop-filter: blur(0);
    margin: 10px; /* Add some space between the boxes */
    border-radius: 5px; /* Optional: add border-radius for rounded corners */
}

.ti-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ti-profile-img {
    margin-right: 10px;
}

.ti-profile-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.ti-profile-details {
    display: flex;
    flex-direction: column;
}

.ti-name {
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000;
}

.ti-date {
    color: #000;
    opacity: .5;
    font-size: 11.2px !important;
}

.grs-rating {
    margin-bottom: 10px;
}

.grs-rating .dashicons-star-filled {
    color: gold;
}

.grs-text-container {
    position: relative;
}

.grs-review .grs-text {
    line-height: 21.75px;
    font-size: 16px;
    text-align: left;
    transition: max-height 0.5s ease;
    max-height: 87px; /* Initially set the max height to 87px */
    overflow: hidden;
    padding-right: 0;
}

.grs-review .full-text {
    display: none;
}

.grs-review .read-more, .grs-review .hide {
    display: block;
    color: #888 !important;
    font-size: 13.5px;
    text-decoration: none;
    margin-top: 5px;
}

.grs-review .read-more:hover, .grs-review .hide:hover {
    text-decoration: underline;
}

.slick-dots {
    bottom: -45px; /* Move dots 45px below their default position */
}
