.widget-blockquote {
    --font-quote: var(--font-georgia);
    --font-credit: var(--font-museo-700);
    --color-text: var(--off-black);
    --color-border: var(--black);

    max-width: var(--max-width-padded);
    padding: var(--max-width-padding);
    margin: 0 auto 30px;
}

.widget-blockquote .blockquote {
    padding: 0;
    margin-bottom: 12px;
}

.widget-blockquote .quote {
    font-family: var(--font-quote);
    font-size: 25px;
    font-style: unset;
    line-height: 1.4;
}

.widget-blockquote .credit {
    position: relative;
    font-family: var(--font-credit);
    font-size: 12px;
    text-transform: uppercase;
}

.widget-blockquote .credit::after {
    content: '';
    display: block;
    pointer-events: none;
    height: 4px;
    width: 30px;
    margin-top: var(--space-4);
    background-color: var(--color-border);
}

@media screen and (min-width: 64em) {
    .widget-blockquote .quote {
        font-size: 35px;
    }

    .widget-blockquote .credit {
        font-size: 13px;
    }

    .widget-blockquote .credit::after {
        width: 32px;
    }

}