/*
 * Reviews section style for theliveexperience template.
 */
.fa-quote-left:before {
    color: #6666ff;
    -webkit-text-stroke: 2px #FFFFFF;
    paint-order: stroke fill;
}

section#reviews {
    width: 100%;
    padding: 5em 5%;
    text-align: center;
    background-color: #6666ff;
    box-sizing: border-box;
}

section#reviews.page {
    padding-top: 10em;
}

section#reviews .section-label {
    color: #000000;
    margin-bottom: 2em;
}

.feed-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-bottom: 3em;
}

.feed-container {
    position: relative;
    overflow: visible;
    width: 30%;
    min-width: 280px;
    flex-grow: 0;
}

.feed-container p.quote {
    position: absolute;
    font-size: 3em;
    color: #6666ff;
    top: -.7em;
    left: .8em;
    z-index: 1;
}

.feed-container .feed-body {
    width: 100%;
    padding: 2.5em 1.8em 2em;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: left;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .12);
    height: 100%;
}

.feed-container .stars {
    color: #f5a623;
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.feed-container .stars i {
    font-style: normal;
}

.feed-container .review-text {
    color: #000000;
    font-size: 1em;
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

.feed-container .review-author {
    color: #6666ff;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: .05em;
}

section#reviews a.button {
    display: inline-block;
    margin-top: 1em;
}

@media screen and (max-width: 780px) {
    .feed-container {
        width: 45%;
        min-width: 240px;
    }
}

@media screen and (max-width: 500px) {
    section#reviews {
        padding: 3em 4%;
    }

    .feed-container {
        width: 100%;
        min-width: 0;
    }

    .feed-container .review-text {
        font-size: 1.25em;
    }

    .feed-container .review-author {
        font-size: 1.25em;
    }
}
