﻿.quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem
}

blockquote {
    font-weight: 100;
    font-size: 2rem;
    line-height: 1.4;
    position: relative;
    margin: 0;
    padding: .5rem;
    border: none;
}

blockquote.quote-width-600 {
    max-width: 600px;
}

blockquote:before,
blockquote:after {
    position: absolute;
    color: #f1efe6;
    font-size: 8rem;
    width: 4rem;
    height: 4rem;
}

blockquote:before {
    content: '“';
    left: -3.5rem;
    top: -2rem;
}

blockquote:after {
    content: '”';
    right: -4rem;
    bottom: 1rem;
}

cite {
    line-height: 3;
    text-align: left;
}