@charset "utf-8";

/* =========================================================
   ROYAL COACH CHARTER — CLIENT REVIEWS
   ========================================================= */

.reviews-page {
    background: #fff;
    color: #777;
}

.reviews-label {
    display: block;
    margin-bottom: 10px;
    color: #58aa01;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.reviews-hero {
    padding: 68px 24px 62px;
    background: #f3f4f4;
    text-align: center;
}

.reviews-hero-inner,
.reviews-intro-inner,
.reviews-cta-inner {
    width: min(1000px, 100%);
    margin: 0 auto;
}

.reviews-hero h1 {
    margin: 0 0 20px;
    color: #777;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
}

.reviews-hero p,
.reviews-intro p,
.reviews-cta p {
    max-width: 950px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.reviews-intro {
    padding: 36px 24px 52px;
    text-align: center;
}

.reviews-intro h2,
.reviews-cta h2 {
    margin: 0 0 18px;
    color: #777;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}


/* REVIEWS */

.reviews-list {
    padding: 0 30px 72px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
    width: min(1400px, 100%);
    margin: 0 auto;
}

.review-card {
    position: relative;
    padding: 30px 30px 27px;
    background: #f6f6f6;
    border-top: 2px solid #79c843;
}

.review-mark {
    height: 34px;
    color: #79c843;
    font-size: 55px;
    line-height: .8;
    opacity: .75;
}

.review-card blockquote {
    margin: 9px 0 24px;
    color: #777;
    font-size: 15px;
    font-style: normal;
    line-height: 1.75;
}

.review-byline {
    padding-top: 17px;
    border-top: 1px solid #ddd;
}

.review-byline strong,
.review-byline span {
    display: block;
}

.review-byline strong {
    margin-bottom: 4px;
    color: #444;
    font-size: 15px;
    font-weight: 700;
}

.review-byline span {
    color: #888;
    font-size: 13px;
    line-height: 1.55;
}

.review-byline .review-location {
    margin-top: 3px;
    color: #58aa01;
    font-weight: 600;
}


/* CTA */

.reviews-cta {
    padding: 62px 24px 60px;
    background: #f3f4f4;
    text-align: center;
}

/* SHARE EXPERIENCE */

.reviews-share {
    width: 100%;
    padding: 38px 20px;
    margin: 0;
    background: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.reviews-share a {
    display: inline-block;
    float: none;
    margin: 0;
    padding: 11px 22px;

    background: #79c843;
    border: 1px solid #79c843;

    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-align: center;
}

.reviews-share a:hover,
.reviews-share a:focus {
    background: #559f28;
    border-color: #559f28;
    color: #fff;
    text-decoration: none;
}

.reviews-button {
    display: inline-block;
    padding: 11px 20px;
    border: 1px solid #79c843;
    background: #79c843;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
}

.reviews-button:hover,
.reviews-button:focus {
    background: #559f28;
    border-color: #559f28;
    color: #fff;
    text-decoration: none;
}

.reviews-button-outline {
    background: transparent;
    color: #559f28;
}

.reviews-button-outline:hover,
.reviews-button-outline:focus {
    color: #fff;
}


/* TABLET */

@media (max-width: 950px) {

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .reviews-hero {
        padding: 48px 20px 44px;
    }

    .reviews-intro {
        padding: 44px 20px 40px;
    }

    .reviews-list {
        padding: 0 20px 52px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 26px 24px 24px;
    }

    .reviews-hero p,
    .reviews-intro p,
    .reviews-cta p {
        font-size: 15px;
    }

    .reviews-intro h2,
    .reviews-cta h2 {
        font-size: 27px;
    }

    .reviews-cta {
        padding: 48px 20px 52px;
    }

    .reviews-cta-links {
        flex-direction: column;
        align-items: center;
    }

}
