/* Default list */
ul.wp-block-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Unstyled list */
ul.is-style-unstyled,
ol.is-style-unstyled {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;

    & li {
        padding-left: 0;

        & + .button-icon,
        & > svg {
            display: none;
        }
        
        &::before {
            content: none;
        }
    }
}