/* 
GALLERY
*/
#photos_p-gallery {
    height: 100%;
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    z-index: 10;
}
@media only screen and (min-width: 1200px) {
    #photos_p-gallery {
        padding-top: .7rem;
    }
}

.photo_p-collection {
    min-width: -webkit-fill-available;
    width: calc(100vw - 6rem);
    max-width: calc(100vw - 6rem);
    height: 100%;
    scroll-snap-align: center;
    border-radius: 4px;
    cursor: pointer !important;
}
.photo_p-collection:not(:last-of-type) {margin-right: 1.5rem;}
.photo_p-collection .--title {margin-bottom: 6px;}
.photo_p-collection .--media {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 4px;
}

@media only screen and (min-width: 1200px) {
    .photo_p-collection {
        min-width: fit-content;
        width: fit-content;
        max-width: calc(100vw - 6rem);
        height: 100%;
    }

    .photo_p-collection .--media {
        width: auto;
        height: 100%;
        max-height: 100%;
    }
}