/* Container for the review slider */
.review-slider {
    display: flex;
    
    gap: 20px; /* Space between items */
}

/* Individual review item */
.review-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 por fila */
    box-sizing: border-box;
    padding: 24px;
    text-align: center;
	border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 24px !important;
    margin-left: 7px;
    
    min-height: 250px; /* Establece una altura mínima */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye el contenido de forma uniforme */
}


.review-item h3 {
    font-size: 1.2em;
    margin: 0 0 10px;
}

.review-item p {
	text-size-adjust: 100%;
    font-size: 16px;
    line-height: 23px;
    color: rgb(17, 17, 17);
    margin: 0 0 10px;
}

.review-item span {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.star-rating {
    font-size: 1.5em;
    color: #ffcc00; /* Gold color for stars */
    display: flex;
}


.review-slider button.slick-arrow {
    font-size: 0;
    padding: 0;
    border: none;
    line-height: 0;
    width: 175px;
    color: #929292;
    background: none;
    outline: 0;
}

.review-slider button.slick-arrow.slick-prev:before {
  	content: "\2190"; /* ← */
}

.review-slider button.slick-arrow.slick-next:before {
    content: "\2192"; /* → */
}

.review-slider button.slick-arrow:before {
    font-size: 36px;
}


/* Responsive styling */
@media (max-width: 1200px) {
    .review-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row for medium screens */
    }
}

@media (max-width: 768px) {
    .review-item {
        flex: 1 1 100%; /* 1 item per row for small screens */
    }
}
.review-item .star-rating {
    font-size: 1.5em;
    color: #ffcc00; /* Gold color for stars */
    display: flex;
}

.review-item .star-rating .star {
    margin-right: 2px;
}

.review-item .star-rating .star.empty {
    color: #e0e0e0; /* Grey color for empty stars */
}

.review-image {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    object-fit: cover;
    display: block;
}

.review-header {
    display: flex;
    align-items: center; /* Alinear verticalmente */
    gap: 10px; /* Espacio entre la imagen y el texto */
}


.review-user-info {
    display: flex;
    flex-direction: column; /* Organiza los elementos en una columna */
	align-items: flex-start;
}
.review-name {
    font-size: 16px;
    font-weight: bold;
	margin-bottom: 0px !important;
}
.review-date {
    font-size: 14px;
    color: #666;
}

.review-divider {
    border-bottom: 1px solid rgb(231 231 231);
    margin: 10px 0; /* Espacio arriba y abajo */
}

.review-item .star-rating + p {
    margin-top: 10px;
}

