.wp-block-quote {
    padding: var(--wp--preset--spacing--32-16);
    margin-inline: unset;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: 1rem;
    background-color: var(--wp--preset--color--alt-background);
    display: grid;
    grid-template-columns: 3rem 1fr;
    max-width: 942px !important;
    gap: var(--wp--preset--spacing--16-8);
    & p {
        font-size: var(--wp--preset--font-size--medium);
        font-style: italic;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 4%;
        margin-bottom: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-family: var(--wp--preset--font-family--headings);
    }
    & cite {
        font-style: normal;
        font-size: var(--wp--preset--font-size--small);
    }
}
.wp-block-quote::before {
    content: '';
    background-image: url(/wp-content/themes/fakturujonline/assets/icons/quote-badge.svg);
    height: 3rem;
    width: 3rem;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}
.wp-block-quote > * {
    grid-column: 2/3;
}

@media screen and (max-width: 782px) {
    .wp-block-quote {
        display: flex;
        flex-direction: column;
    }
}