/* ===================================================
   NOUS SOUTENIR — Styles spécifiques
   =================================================== */

/* Section don : image + contenu côte à côte */
#donate {
    flex-direction: row;
    justify-content: space-around;
}

#donate > img {
    height: 50%;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
    #donate {
        flex-direction: column;
        align-items: center;
    }

    #donate > img {
        height: auto;
        width: 80%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}
