.blocListesContainer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 1rem;
}

.blocListes {
    display: block;
    margin: auto;
    margin: 0.75rem auto;
    /*padding: 1rem;*/
    border-style: solid;
    border-width: 0.125rem;
    width: 45%;
    display: flex;
    align-items: center;
}

.blocListes > * {
    padding: 1rem;
}
.blocListes:nth-child(even) > .blocListesIMG {
    float: right;
}
.blocListes:nth-child(odd) > .blocListesIMG {
    float: left;
}
.blocListes:nth-child(even) > .blocListesRichTXT {
    float: right;
}
.blocListes:nth-child(odd) > .blocListesRichTXT {
    float: left;
}

.blocListesIMG {
    width: 30%;
    height: auto;
    border-radius: 1.25rem;
}

.blocListes > a {
    width: 30%;
    margin: auto;
}

.blocListes > a > .blocListesIMG {
    width: 100%;
}

.blocListesRichTXT {
    width: 70%;
}

.blocListesRichTXT img.full-width {
    height: auto;
    width: 100%;
}

.blocListesRichTXT h2, .blocListesRichTXT h3, .blocListesRichTXT h4, .blocListesRichTXT h5 {
    margin: 0;
}
.blocListesRichTXT hr {
    border: 0.0625em solid rgba(0, 0, 0, 0.125);
    margin-right: 30%;
}

@media only screen and (max-width: 1080px) {
    .blocListes {
        width: 75%;
    }
}

@media only screen and (max-width: 620px) {
    .blocListesIMG, .blocListesRichTXT {
        height: auto;
        display: block;
        margin: auto;
    }
    .blocListesIMG {
        width: 50%;
    }

    .blocListes > a {
        width: 50%;
        margin: auto;
    }
    
    .blocListes > a > .blocListesIMG {
        width: 100%;
    }
    

    .blocListesRichTXT {
        width: auto;
        max-width: 75%;
        text-align: center;
    }

    .blocListesRichTXT hr {
        margin-right: 15%;
        margin-left: 15%;
    }

    .blocListes {
        width: 100%;
        display: grid;
    }
}