/** Shopify CDN: Minification failed

Line 32:22 Expected identifier but found whitespace
Line 32:47 Unexpected "/"

**/
.ls-text-with-image__left,
.ls-text-with-image__right {
    width:100%;
    clear:both;
    padding-bottom:60px;
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    justify-content: space-between !important;
}
 
.ls-text-with-image__left > div:nth-child(1) {
     width: calc(40% - 0.5rem);
}
.ls-text-with-image__left > div:nth-child(2) {
     width: calc(40% - 0.5rem);
}

.ls-text-with-image__right > div:nth-child(1) {
     width: calc(60% - 0.5rem);
}
.ls-text-with-image__right > div:nth-child(2) {
     width: calc(40% - 0.5rem);
}

* Responsive behavior: stack on small screens */
@media screen and (max-width: 768px) {
    .ls-text-with-image__left,
    .ls-text-with-image__right {
        flex-direction: column;
    }

    .ls-text-with-image__left > div,
    .ls-text-with-image__right > div {
        width: 100%;
    }
}