/* ===========================
   SECTION
=========================== */

.pdv_reviews{
    background:#f8eee5;
    padding:70px 20px;
}

.pdv_reviews_head{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

.pdv_reviews_eyebrow{
    display:inline-block;
    padding:6px 16px;
    background:#ee7b6a;
    color:#fff;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:18px;
}

.pdv_reviews_head h2{
    color:#2c2666;
    font-size:2rem;
    margin:0 0 15px;
}

.pdv_reviews_head p{
    color:#666;
    font-size:1rem;
    line-height:1.7;
}


/* ===========================
   CARROUSEL
=========================== */

.pdv_reviews_carousel{
    position:relative;
    max-width:1250px;
    margin:auto;
}

.pdv_reviews_viewport{
    overflow:hidden;
    width:100%;
}

.pdv_reviews_track{
    display:flex;
    gap:25px;
    transition:transform .45s ease;
    will-change:transform;
}


/* ===========================
   CARTE
=========================== */

.pdv_review_card{

    flex:0 0 calc((100% - 50px) / 3);

    background:#fff;

    border-radius:22px;

    padding:30px;

    box-sizing:border-box;

    border:1px solid rgba(44,38,102,.08);

    box-shadow:0 12px 30px rgba(44,38,102,.08);

    transition:.25s;

}

.pdv_review_card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(44,38,102,.14);

}


/* ===========================
   ETOILES
=========================== */

.pdv_review_stars{

    color:#ee7b6a;

    font-size:1.35rem;

    letter-spacing:3px;

    margin-bottom:20px;

}


/* ===========================
   COMMENTAIRE
=========================== */

.pdv_review_comment{

    color:#444;

    line-height:1.7;

    min-height:120px;

}

.pdv_review_comment p{

    margin:0;

}


/* ===========================
   AUTEUR
=========================== */

.pdv_review_author{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.pdv_review_avatar{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#2c2666;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

    font-size:1.15rem;

    flex-shrink:0;

}

.pdv_review_author_info strong{

    display:block;

    color:#2c2666;

    margin-bottom:3px;

}

.pdv_review_city{

    color:#666;

    font-size:.88rem;

}

.pdv_review_date{

    color:#999;

    font-size:.8rem;

}


/* ===========================
   NAVIGATION
=========================== */

.pdv_reviews_prev,
.pdv_reviews_next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#2c2666;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.25s;

    z-index:5;

}

.pdv_reviews_prev{

    left:-25px;

}

.pdv_reviews_next{

    right:-25px;

}

.pdv_reviews_prev:hover,
.pdv_reviews_next:hover{

    background:#ee7b6a;

}


/* ===========================
   TABLETTE
=========================== */

@media(max-width:1024px){

    .pdv_review_card{

        flex:0 0 calc((100% - 25px) / 2);

    }

}


/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .pdv_reviews{

        padding:50px 15px;

    }

    .pdv_review_card{

        flex:0 0 100%;

    }

    .pdv_reviews_prev{

        left:5px;

    }

    .pdv_reviews_next{

        right:5px;

    }

}