.testimonial-simple {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;

    @media (min-width:480px) {
        text-align: left;
    }
}

.testimonial-simple--white {
    background-color: #fff;
}

.testimonial-simple--red {
    background-color: var(--brand-red);
}

.testimonial-simple--green {
    background-color: var(--brand-green);
}

.testimonial-simple--grey-light {
    background-color: var(--brand-grey-light);
}

.testimonial-simple--grey-dark {
    background-color: var(--brand-grey-dark);
}

.testimonial-simple--ghost-grey {
    background-color: var(--ghost-grey);
}

@media (min-width:768px) {
    .testimonial-simple--white {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.testimonial-simple__pic {
    display: block;
    margin: 0 auto 15px auto;
    border-radius: 50%;

    @media (min-width:480px) {
        float: left;
        margin-right: 35px;
    }
}

.testimonial-simple__quote {
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 1.2;

    p {
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: 300;

        &:first-child {
            &:before {
                content: '“';
                margin-left: -.43em;
            }
        }

        &:last-of-type {
            &:after {
                content: '”';
            }
        }
    }

    cite {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;

        strong {
            font-size: 16px;
            font-weight: 700;
        }
    }

    @media (min-width:480px) {
        padding-left: 115px;
    }

    @media (min-width:768px) {
        p {
            font-size: 21px;
        }

        cite {
            font-size: 16px;

            strong {
                font-size: 18px;
            }
        }
    }
}

.testimonial-simple--white .testimonial-simple__quote {
    color: var(--brand-grey-light);

    cite {
        color: var(--text-color);

        strong {
            &:after {
                content: '//';
                margin-left: 10px;
                margin-right: 5px;
                font-weight: 300;
                color: #c1c3c5;
            }
        }
    }
}

.testimonial-simple--red .testimonial-simple__quote,
.testimonial-simple--green .testimonial-simple__quote,
.testimonial-simple--grey-light .testimonial-simple__quote,
.testimonial-simple--grey-dark .testimonial-simple__quote {
    color: #fff;

    cite {
        strong {
            display: block;
        }
    }
}