.grc-swiper .review {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    min-height: 150px;
}

.grc-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.review-text {
    font-style: italic;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: max-height 0.3s ease;
}

.review-text.collapsed {
    -webkit-line-clamp: 4; /* show only 4 lines initially */
    max-height: calc(1.5em * 4);
}

.review .read-more-btn {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    padding: 0;
    font-size: 0.9em;
    margin-top: 5px;
}

.review .read-more-btn:hover {
    text-decoration: underline;
	background-color: #f9f9f9 !important;
}

.review-stars {
    color: #FFD700; /* gold */
    font-size: 1.2em;
    margin: 5px 0;
}

/* Space between carousel and pagination */
.grc-pagination {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

/* Make bullets larger and more visible */
.grc-pagination .swiper-pagination-bullet {
    background: #999;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.grc-pagination .swiper-pagination-bullet-active {
    background: #FFD700; /* gold for active bullet */
}