/* Image Gallery */
.image-gallery-container {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 530px;
    margin: -20px 0 17px 0;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow-y: auto;
}
.image-content {
    width: 100%;
    aspect-ratio: 3/2;
    /* height: 275px; */
    border-radius: 10px;
}
.imageGallery {
    width: 100%;
    height: 120%;
    border-radius: 10px;
}
/* Responsive CSS - Mobile */
@media screen and (max-width: 850px) {
    .image-gallery-container {
        height: 550px;
        margin: 40px 0 17px 0;
        grid-template-columns: auto;
    }
    .image-content {
        /* height: 100%; */
        aspect-ratio: 3/2;
    }
}
