.blockquote--light {
    --text: var(--blue100);
    --quotee: var(--blue80);
}

.blockquote--light-topics {
    --text: var(--grey100);
    --quotee: var(--grey80);
}



.blockquote--dark {
    --text: #FFF;
    --quotee: rgba(255,255,255, .8);
}

.page--light-greytext .blockquote {
    --text: var(--grey100);
    --quotee: var(--grey80);
}


.blockquote__text {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.blockquote__quotee {
    display: flex;
    align-items: center;
    color: var(--quotee);
    margin-top: 20px;
}

.blockquote__avatar {
    width: 55px;
    height: 55px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.blockquote__avatar img {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.blockquote__person {
    font-weight: 500;
}

.blockquote__jobtitle {
    display: block;
    margin-top: 3px;
}

.blockquote__description {
    flex: 1;
    letter-spacing: .01em;
}

@media(min-width: 991px) {
    .blockquote__text {
        font-size: 32px;
    }

    .blockquote__quotee {
        margin-top: 34px;
    }

    .blockquote__avatar {
        width: 87px;
        height: 87px;
    }
    
}