/* Styles de base */
.mgr-reviews {
    display: grid;
    gap: 30px;
    padding: 20px;
}

.mgr-reviews.grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.mgr-reviews.list {
    grid-template-columns: 1fr;
}

.mgr-review {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mgr-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mgr-rating {
    color: #FFB400;
    font-size: 1.4em;
}

.mgr-content {
    line-height: 1.6;
    margin-bottom: 15px;
}

.mgr-date {
    font-size: 0.9em;
    color: #666;
}

/* Styles pour carrousel (nécessite JavaScript supplémentaire) */
.mgr-reviews.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.mgr-reviews.carousel .mgr-review {
    flex: 0 0 80%;
    margin-right: 20px;
    scroll-snap-align: start;
}