
.gallery-container {
    grid-area: gallery;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin: 0 10px;
}
.gallery-container > .gallery {
    position: relative;
    height: auto;
    width: min-content;
    background-color: rgba(0,0,0,.2);
    padding: 5px;
    border-radius: 10px;
}
.gallery-container > .text {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-container > .gallery > [data-members] {
    display: none;
}

.gallery-container > .gallery > [data-preview] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 5px;
}

.gallery-container > .gallery > [data-preview] > img {
    border-radius: 10px;
    height: 50px;
    object-fit: none; /* Do not scale the image */
    object-position: top; /* Center the image within the element */
    width: 50px;
}

.gallery-container > .gallery > [data-preview][data-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.gallery-container > .gallery > [data-preview][data-count="1"] > img {
    height: unset;
    width: unset;
    object-fit: unset; /* Do not scale the image */
    object-position: unset; /* Center the image within the element */
}

.gallery-container > .gallery:hover:before {
    content: "\f002";
    font-family: "Font Awesome 5 Pro";
    font-size: 55px;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}