/** Shopify CDN: Minification failed

Line 60:10 Expected identifier but found whitespace
Line 61:12 Unexpected "{"
Line 62:19 Expected ":"

**/
.reviews-container {
    padding: 40px 24px;
    background-color: #F5F5F5;
    text-align: center;
    margin: 0 16px;
}

@media screen and (min-width: 960px) {
    .reviews-container {
        padding: 64px 64px 40px;
        margin: 0 48px;
    }
}

.reviews-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 48px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-stars {
    margin-bottom: 15px;
    font-size: 18px;
}

.star {
    display: inline-block;
    margin-right: 2px;
}

.filled-star {
    color: {
            {
            section.settings.star_color
        }
    }

    ;
}

.empty-star {
    color: #ccc;
}

.review-author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.review-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
}

.review-author {
    margin-top: 15px;
    font-weight: 600;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}