/* ==================================
   LeNew Audio Reader
   Style lecteur article
================================== */


.lar-player{

    margin:25px 0 30px;

    padding:18px 22px;

    background:#ffffff;

    border:1px solid #e8e8e8;

    border-radius:10px;

    box-shadow:0 3px 12px rgba(0,0,0,.06);

}



/* En-tête */

.lar-header{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

}



.lar-icon{

    font-size:25px;

}



.lar-title{

    font-size:20px;

    font-weight:700;

    color:#222;

}





/* Boutons */

.lar-controls{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:15px;

}



.lar-controls button{

    border:none;

    background:#d60000;

    color:#fff;

    padding:9px 18px;

    border-radius:5px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    transition:.2s;

}



.lar-controls button:hover{

    background:#b50000;

}






/* Vitesse */

.lar-speed{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:10px;

    font-size:14px;

}



.lar-speed select{

    padding:5px 10px;

    border:1px solid #ddd;

    border-radius:5px;

}





/* Temps lecture */

.lar-reading-time{

    color:#666;

    font-size:13px;

}





/* Mobile */

@media(max-width:768px){


    .lar-player{

        padding:15px;

    }



    .lar-title{

        font-size:18px;

    }



    .lar-controls button{

        width:100%;

    }



    .lar-speed{

        margin-top:10px;

    }


}