/* 

BLOG

*/


/* Résumé */

    /* Picture */
    .tease-post_picture{
        position: relative;
    }
    .tease-post_picture::before{
        display: block;
        width: 100%;
        padding-top: 70%;
        content: "";
    }
    .tease-post_picture a{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        overflow: hidden;
    }

    .no-picture{
        max-height: 80%;
        max-width: 80%;
    }
    .tease-post_picture img{
        transition: 0.2s ease-in-out;
    }
    .tease-post_picture:hover img{ 
        transform: scale(1.1);
    }