/* --- GALLERY --- */
.section-art { overflow: hidden;
    padding-bottom: 5rem;
}
.gallery-wrapper { width: 100%;
    overflow: hidden;
}
.gallery-track { display: flex;
    gap: 4rem;
    padding-left: 5vw;
    width: max-content;
}
.art-card { flex-shrink: 0;
    position: relative;
}
.art-card img { width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s;
}
.art-card:hover img { filter: grayscale(0%);
}

.portrait { width: 350px;
    height: 500px;
}
.landscape { width: 600px;
    height: 400px;
}
.square { width: 450px;
    height: 450px;
}