/* Blog : réduit l'espace entre paragraphes (~ -20%) */
.page p{
    margin-bottom:.8rem;

    /* Justification + césure (réduit les grands blancs) */
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Cartes du blog : même espacement que dans les autres pages (plus compact + pas de marge en bas) */
.page .section-card p{
    margin-bottom:.65rem;

    /* Justification + césure (réduit les grands blancs) */
    text-align: justify;
    text-align-last: left;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.page .section-card p:last-child{
    margin-bottom:0;
}

.blog-cards--auto-last-full > .col-12.col-lg-6:nth-last-child(1):nth-child(odd){
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

/* Cartes du blog : espace sous l'image = minimal */
.page .section-card img.float-start{
    margin-bottom: .15rem !important;
}
