/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/** SECTION ARTICLE **/
div.articles-container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 95%;
    width: -webkit-fill-available;
    width: -moz-available;
}

div.articles{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
div.article{
    width: 200px;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: end;
                -ms-flex-pack: end;
                    justify-content: flex-end;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
    border-radius: 5px;
    background-color: var(--background-brown);
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
div.article:hover{
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
}
img.article-image{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 5px 5px 0 0 ;
}
h2.article-title{
    color: var(--h1-light);
    padding: 13px 6px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
}
div.articles-container p{
    font-weight: 600;
}
@media only screen and (min-width: 550px) {
    div.articles{
        display:-ms-grid;
        display:grid;
        -ms-grid-columns: 1fr 42px 1fr;
        grid-template-columns: repeat(2, 1fr); /*1fr = 1 fraction | ici reviens à "1fr 1fr 1fr 1fr"*/
        padding: 13px 42px 13px 42px;
        gap: 42px;
        border: 3px solid var(--background-brown);
        border-width: 0px 3px 0px 3px;
    }
}
@media only screen and (min-width: 1300px) {
    div.articles{
        grid-template-columns: repeat(4, 1fr); /*1fr = 1 fraction | ici reviens à "1fr 1fr 1fr 1fr"*/
    }
}
@media only screen and (max-width : 460px){
    div.article{
        width: 100%;
    }
    div.articles a {
        width: 100%;
    }
    div.articles {
        width: 100%;
        width: -webkit-fill-available;
        width: -moz-available;
    }
    img.article-image{
    height: 250px;
}

}

div.articles-container span.ligne-separatrice{
    width:50%;
    background-color: var(--background-brown);
    margin: 13px;
}
.page-numbers{
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}
.page-numbers:hover:not(.current):not(.dots){
    -webkit-transition: 100ms;
    -o-transition: 100ms;
    transition: 100ms;
    background-color: var(--background-brown);
}
/** FIN SECTION ARTICLE **/
/** =========================================================================================================================== **/
/** SECTION NEWSLETTER **/
div.newsletter-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--background-brown);
    gap: 13px;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
}
div.newsletter-text h1{
    text-wrap-mode: nowrap;
}
div.newsletter-text h2{
    font-weight: 600;
}
div.newsletter-text strong{
    color : var(--h2-light);
}
div.newsletter-text p {
    margin-right: 13px;
}
div.newsletter-image-button{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
}
div.newsletter-image-button img{
    width: 100%;
    height: auto;
}
div.newsletter-image-button button{
    display: none;
    background-color: var(--background-clair);
    color: var(--h2-brown);
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: Inter;
}
div.newsletter-image-button button:hover {
    opacity: 0.8;
}
div.newsletter-image-button button:active {
    opacity: 0.6;
}
@media only screen and (min-width: 901px) {
    div.newsletter-container{
        padding: 7vw 10vw 7vw 10vw;
    }
    div.newsletter-image-button{
        width: 200px;
    }
    div.newsletter-image-button button{
        padding: 13px;
        margin: 0px 26px 0px 26px;
        width: -webkit-min-content;
        width: -moz-min-content;
        width: min-content;
        max-width: none;
        text-wrap-mode: nowrap;
    }
}
@media only screen and (max-width: 900px) {
    div.newsletter-container{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    div.newsletter-image-button img {
        max-width: 50%;
    }
    div.newsletter-text p {
    margin-right: 0px;
}
}
/** FIN SECTION NEWSLETTER **/
/** =========================================================================================================================== **/
/** SECTION LINKEDIN **/
div.linkedin-container{
    width: 90%;
    width: -webkit-fill-available;
    width: -moz-available;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    gap:13px;
}
div.linkedin-container h2{
    text-align: center;
    width: 100%;

    font-weight: bold;
    color: var(--h1-dark-brown);
}
div.LI-profile-badge{
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}
span.linkedin-contact{
    margin-top: 13px;
    width:  80%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3px;
    background-color: var(--h2-brown);
}
@media only screen and (min-width: 900px) {
    iframe.linkedin-widget{
        width: 100%;
        height: 50vh;
    }
    span.linkedin-contact{
        width:  60%;
        height: 2px;
    }
}
p.linkedin_nobadge_text{
    text-align: center;
    font-size: 20px;
}
div.podbean-container{
    width: 90%;
    width: -webkit-fill-available;
    width: -moz-available;
}