
/* LISTS */
.wp-block-list {
    list-style: outside;
    padding-left: var(--lists-padding-left);
}
ul.wp-block-list li {
    list-style-type: circle;
}
ol.wp-block-list li {
    list-style-type: decimal;
}
.wp-block-list li::marker {
    font-weight: var(--font-weight-bold);
}


/* QUOTES */
.wp-block-quote {
    padding-left: 2.4rem;
    position: relative;
    max-width: 102.6rem;
    min-height: 16.9rem;
}
.wp-block-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    min-height: 16.9rem;
    background-color: var(--johannes-75);
}
.editor-styles-wrapper .wp-block-quote > p,
.wp-block-quote > p, 
.wp-block-quote > p:is(.has-xs-font-size, .has-s-font-size, .has-m-font-size, .has-l-font-size, .has-xl-font-size, .has-xxl-font-size) {
    font-size: 2.8rem!important;
    line-height: 1.28em!important;
    letter-spacing: 0;
    margin: 0 0 1.2rem;
}
.editor-styles-wrapper .wp-block-quote > cite,
.wp-block-quote > cite {
    font-style: unset;
    font-size: 1.6rem;
    line-height: 1.5em;
}
.editor-styles-wrapper .wp-block-quote {
    font-family: var(--font-sf);
}


:where(.wp-block-columns) {
    margin-bottom: 0;
}