.main-container {
    padding: 20px;
    font-family: "Poppins",sans-serif !important;
    font-weight: 400;
    text-align: center !important;
}

/* Conteneur principal */
.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* En-tête avec la note globale */
.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}
.rating-number { font-size: 3em; font-weight: bold; color: #333; }
.rating-total { color: #666; }

/* Grille des avis */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive */
    gap: 20px;
}
 
/* Carte d'un avis individuel */
.review-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); }

.review-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}
.author-name { font-weight: bold; font-size: 0.95em; }

.stars { color: #f4b400; margin-bottom: 10px; letter-spacing: 2px; }

.review-text {
    font-size: 0.9em;
    color: #444;
    line-height: 1.5;
    /* Limiter le texte à 5 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-date {
    display: block;
    margin-top: 15px;
    font-size: 0.8em;
    color: #999;
}