.wp-block-quote {
    padding-left: 1.5rem;    
    position: relative;
}

.is-root-container > .wp-block-quote,
.entry-content > .wp-block-quote
{
    margin-left: 20%;
    width: 60%;
    margin-top: var(--wp--custom--line-height-xxl);
    margin-bottom: var(--wp--custom--line-height-xxl);
    
}

.wp-block-quote::before {
    content: "";
    display: block;
    width: 2px;
    background-color: var(--wp--preset--color--orange);
    position: absolute;
    left: 0;
    top: 0.4rem;
    height: calc(100% - 0.8rem);
}

.wp-block-quote > * {
    font-size: var(--wp--preset--font-size--l);
    line-height: var(--wp--custom--line-height-l);
    font-weight: 600;
}


@media screen and (max-width: 900px) {
    .is-root-container > .wp-block-quote,
    .entry-content > .wp-block-quote
    {
        margin-left: 10%;
        width: 80%;
    }
}

@media screen and (max-width: 782px) {
    .is-root-container > .wp-block-quote,
    .entry-content > .wp-block-quote
    {
        margin-left: 3%;
        width: 94%;
    }
}