/* CODE DESKTOP ORIGINAL */
.image__presentation {
    margin: 2rem 0;
}
.image__presentation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.legende__image p {
    font-size: .875rem;
}
.legende__image p.legende {
    font-style: italic;
    font-weight: 500;
}

/* ========== MEDIA QUERIES RESPONSIVE ========== */

@media (max-width: 1440px) {
    .image__presentation {
        margin: 1.8rem 0;
    }
    
    .legende__image p {
        font-size: .85rem;
    }
}

@media (max-width: 1200px) {
    .image__presentation {
        margin: 1.5rem 0;
    }
    
    .legende__image p {
        font-size: .825rem;
    }
}

@media (max-width: 800px) {
    .image__presentation {
        margin: 1.25rem 0;
    }
    
    .image__presentation img {
        border-radius: 8px;
    }
    
    .legende__image p {
        font-size: .8rem;
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 600px) {
    .image__presentation {
        margin: 1rem 0;
    }
    
    .image__presentation img {
        border-radius: 6px;
    }
    
    .legende__image p {
        font-size: .75rem;
        text-align: center;
        margin-top: 0.75rem;
    }
}