﻿.image-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0px;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: stretch;
    align-content: stretch;
    max-width: 100%;
}

/*.image-gallery::after{
    content: "";
    flex-grow: 999;
}*/
.image-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    align-content: stretch;
}

    .image-item img {
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

.image-gallery .column {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /*flex-shrink: 0;*/
}
