/* Mobile */
@media (max-width: 576px) {}

/* Tablette */
@media (max-width: 768px) {
    .article-gallery-container .body.size-1x {
        flex: 1 1 46% !important;
        /* base 120px */
        max-width: 46% !important;
        /* 250px */
    }
}

/* Laptop */
@media (max-width: 1360px) {}

.article-gallery-container {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.article-gallery-container .body {
    width: 100%;
}

.article-gallery-container .body.size-1x {
    flex: 1 1 28%;
    max-width: 28%;
}


.article-gallery-container .photo-content {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
    border: 1px solid var(--text);
}

.article-gallery-container .photo-content.loaded {
    cursor: pointer;
    width: auto;
    height: auto;

}

.article-gallery-container .photo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-gallery-container .photo-content img {
    transform: scale(1);
    transition: transform 0.4s ease;

}

.article-gallery-container .photo-content.loaded:hover img {
    transform: scale(1.08);
    /* zoom léger */
}

.article-gallery-container .text {
    font-size: var(--text-size);
}

.article-gallery-container .artist {
    font-size: var(--text-artist-size);
}

.article-gallery-container .price {
    font-size: var(--text-price-size);
}