.shb-gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.shb-gallery-item {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, and basis */
}

.shb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
