/**
 * Block editor quote styles
 */
.wp-block-quote.is-style-default,
.wp-block-quote.is-style-style-1,
.wp-block-quote.is-style-style-2,
.wp-block-quote.is-style-style-3,
.wp-block-quote.is-style-style-4 {
    font-size: larger;
    position: relative;
    padding: 16px 30px 16px 45px;
    background-color: #efefef;
    border-radius: 5px;
    line-height: 180%;
}

.wp-block-quote.is-style-style-2 {
    background-color: #fff1f6;
}

.wp-block-quote.is-style-style-3 {
    background-color: #fff6e1;
}

.wp-block-quote.is-style-style-4 {
    background-color: #e5f8ff;
}

.wp-block-quote.is-style-default::before,
.wp-block-quote.is-style-style-1::before,
.wp-block-quote.is-style-style-2::before,
.wp-block-quote.is-style-style-3::before,
.wp-block-quote.is-style-style-4::before {
    content: "«";
    position: absolute;
    left: 10px;
    top: 5px;
    font-size: xxx-large;
    color: #ffffff;
    font-family: Georgia, Times New Roman, Times, Serif;
}
