/* --------------------------------------------------
   GOOGLE REVIEWS — RIVEREXPLORER STYLES
   -------------------------------------------------- */

/* Container for the whole reviews block */
.reviews-container {
    margin: 20px 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #222;
}

/* Header row: "Google Reviews" + overall rating */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
}

.reviews-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Overall rating number (e.g., 4.6) */
.reviews-overall-rating {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e7711b; /* Google's star color */
}

/* Link to "View all reviews" */
.reviews-view-all {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: #1a73e8;
    text-decoration: none;
}

.reviews-view-all:hover {
    text-decoration: underline;
}

.review-photo {
    margin-top: 8px;
}

.review-photo img {
    width: 100%;
    max-width: 240px;
    border-radius: 4px;
    display: block;
}

/* --------------------------------------------------
   INDIVIDUAL REVIEW CARDS
   -------------------------------------------------- */

.review-card {
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 12px 14px;
    margin-bottom: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Reviewer name + date row */
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.review-author {
    font-weight: bold;
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #666;
}

/* --------------------------------------------------
   STAR RATING
   -------------------------------------------------- */

.review-stars {
    margin: 4px 0 8px 0;
    font-size: 1.1rem;
    color: #e7711b; /* Google's star color */
}

/* Optional: slightly smaller stars on mobile */
@media (max-width: 640px) {
    .review-stars {
        font-size: 1rem;
    }
}

/* --------------------------------------------------
   REVIEW TEXT
   -------------------------------------------------- */

.review-text {
    font-size: 0.95rem;
    line-height: 1.35rem;
    color: #333;
    white-space: pre-wrap;
}

/* --------------------------------------------------
   GOOGLE BRANDING (required)
   -------------------------------------------------- */

.google-attribution {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #777;
}

.google-attribution img {
    height: 14px;
    vertical-align: middle;
    margin-left: 4px;
}

/* --------------------------------------------------
   MOBILE TWEAKS
   -------------------------------------------------- */

@media (max-width: 640px) {
    .review-card {
        padding: 10px 12px;
    }

    .reviews-header h3 {
        font-size: 1.15rem;
    }
}