/* Estilos básicos para el carrusel de reseñas */
.grc-reviews-carousel-wrapper {
    position: relative; /* Necesario para posicionar flechas si las tienes fuera del contenedor Swiper */
    margin: 20px 0;
}

.grc-swiper-container {
    width: 100%;
    padding-top: 20px; /* Espacio para paginación si está arriba */
    padding-bottom: 40px; /* Espacio para paginación si está abajo */
}

.grc-review-slide {
    text-align: center;
    font-size: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: flex-start; /* Alinea al inicio para que el contenido no se estire si es corto */
    min-height: 250px; /* O la altura que desees */
}

.grc-review-content {
    width: 100%;
}

.grc-author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.grc-author-name {
    font-size: 1.1em;
    font-weight: bold;
    margin: 5px 0;
}

.grc-rating .grc-star {
    color: #ccc;
    font-size: 1.2em;
}

.grc-rating .grc-star.filled {
    color: #f8ce0b; /* Color de estrella llena */
}

.grc-review-time {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 10px;
}

.grc-review-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    /* Para limitar la altura del texto y mostrar "..." si es muy largo
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    */
}
.grc-read-more {
    font-size: 0.9em;
    color: #0073aa;
    text-decoration: none;
}
.grc-read-more:hover {
    text-decoration: underline;
}


/* Estilos para paginación y navegación de Swiper */
.grc-swiper-container .swiper-pagination-bullet {
    background: #0073aa; /* Color de tu marca */
}

.grc-swiper-container .swiper-button-next,
.grc-swiper-container .swiper-button-prev {
    color: #0073aa; /* Color de tu marca */
}
.grc-swiper-container .swiper-button-next:after,
.grc-swiper-container .swiper-button-prev:after {
    font-size: 24px; /* Ajustar tamaño de las flechas */
}

.grc-error, .grc-no-reviews {
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    text-align: center;
}
.grc-error {
    border-color: #d9534f;
    color: #d9534f;
}