.section-masonry__container {
    column-count: 1; /* Adjust the number of columns based on your design */
    column-gap: 1rem; /* Space between columns */
}

@media (max-width: 768px) {
    .section-masonry__container .section__background--right img {
        padding-left: 0;
    }
    .section-masonry__container .section__background--left img {
        padding-right: 0;
    }
}

@media only screen and (min-width:768px) {
    .section-masonry__container > *:not(:first-child) {
        margin-top: -18rem;
        /*break-inside: avoid;*/ /* Prevent items from splitting across columns */
        /*margin-bottom: 1rem;*/ /* Space between items */
        /*padding: 1rem;*/ /* Padding inside items */
    }
}

@media only screen and (min-width:992px) {
    .section-masonry__container > *:not(:first-child) {
        margin-top: -15rem;
        /*break-inside: avoid;*/ /* Prevent items from splitting across columns */
        /*margin-bottom: 1rem;*/ /* Space between items */
        /*padding: 1rem;*/ /* Padding inside items */
    }
}

@media only screen and (min-width:1200px) {
    .section-masonry__container > *:not(:first-child) {
        margin-top: -25rem;
        /*break-inside: avoid;*/ /* Prevent items from splitting across columns */
        /*margin-bottom: 1rem;*/ /* Space between items */
        /*padding: 1rem;*/ /* Padding inside items */
    }
}