#instaGallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px; /* Espacement global entre les éléments */
    margin: 40px 0 20px;
}

#instaGallery .insta-item {
    display: block;
    width: calc(25% - 10px); /* 4 images par ligne sur desktop avec un espacement de 10px */
    text-align: center;
}

#instaGallery .insta-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 768px) {
    h3{text-align:center;width:100%;color:#fff;display: block;text-transform: uppercase;font-size: 18px;}
    #instaGallery {
        background-color: #cbad5f;
        padding: 20px;
        margin:0;
    }
    #instaGallery .insta-item {
        width: calc(50% - 10px); /* 2 images par ligne avec un espacement de 10px */
        margin: 5px 0; /* Ajouter un espacement vertical de 5px */
    }
}