.scrolling-gallery-wrapper {
    mask-image: linear-gradient(transparent 0%, black 40%, black 60%, transparent 100%);
    cursor: pointer;
    aspect-ratio: 3/4;
    overflow: hidden;
    width: 100%;
}
.sg-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5%;
}
.sg-col {
    width: 33%;

    img {
        border-radius: 5px;
        object-fit: cover;
        width: 100%;
    }
}
.sg-img {
    background: #cccccc;
    border-radius: 5px;
    padding: 3px;
    line-height: 0.5;
}
.sg-col.span-2 {
    width: 66.5%;
}
.sg-col.gapped .sg-img:first-child {
    margin-bottom: 1.5%;
}
.sg-square {
    aspect-ratio: 1/1;
}
.sg-2-1 {
    aspect-ratio: 2 / 0.98;
}
.sg-1-2 {
    aspect-ratio: 1 / 1.52;
}
.sg-1-3 {
    aspect-ratio: 0.98 / 2;
}
