.block__simple-text {

    ul {
        list-style-type: disc;
        padding-left: 20px;

        &:not(:last-child) {
            margin-bottom: 30px;
        }
    }

    .wrapper {

        &:has(p[style="text-align: left;"]) {
            text-align: left;
        }

        &:has(p[style="text-align: center;"]) {
            text-align: center;
        }

        &:has(p[style="text-align: right;"]) {
            text-align: right;
        }

    }

    .cart__shop-links {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    @media (max-width: 1024px) {

        ul {
            &:not(:last-child) {
                margin-bottom: 25px;
            }
        }

    }

    @media (max-width: 768px) {

        ul {
            &:not(:last-child) {
                margin-bottom: 20px;
            }
        }

    }

    @media (max-width: 480px) {

        ul {
            &:not(:last-child) {
                margin-bottom: 15px;
            }
        }

    }

}

.wp-block-woocommerce-cart + .block__simple-text {
    margin-top: 0;
}