/* Titre texte */
.title {
    max-width: 700px;   /* 👈 IMPORTANT */
    margin: auto;
    line-height: 1.8;
}
.article-image {
    width: 100%;
}

/* Desktop */
@media (min-width: 768px) {
    .article-image {
        width: 60%; /* 👈 ajuste ici (60%, 70%, 80%) */
    }
}

/* Conteneur texte */
.content {
    max-width: 700px;   /* 👈 IMPORTANT */
    margin: auto;
    line-height: 1.8;
}

/* Images */
.content img {
    width: 100%;        /* 👈 prend toute la largeur du conteneur */
    height: auto;
    display: block;
    margin: 20px 0;     /* plus besoin de centrer */
    border-radius: 10px;
}
