/* ─── Mobi-Roll Google Reviews ──────────────────────────── */
/* BEM: .mrm-grev__* | Palette: Hampton Blue + Warmweiß    */

/* ─── Rating Banner (Homepage) ─────────────────────────── */
.mrm-grev__banner {
    background: #F5F0E8;
    border-top: 2px solid #e8e2d6;
    border-bottom: 2px solid #e8e2d6;
    padding: 18px 24px;
    margin: 0 0 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.mrm-grev__banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.mrm-grev__banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.mrm-grev__google-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.mrm-grev__banner-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.mrm-grev__banner-text {
    font-size: 15px;
    color: #2d3e45;
    line-height: 1.4;
}
.mrm-grev__banner-text strong {
    color: #1a2a30;
}
.mrm-grev__banner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #5D7891;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s;
    white-space: nowrap;
}
.mrm-grev__banner-link:hover {
    background: #4A6670;
    color: #fff !important;
}

/* ─── Reviews Section (Erfahrungsberichte) ─────────────── */
.mrm-grev__section {
    max-width: 1000px;
    margin: 0 auto 48px;
    padding: 0 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Intro Badge */
.mrm-grev__intro {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.mrm-grev__intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F5F0E8;
    border: 1px solid #e8e2d6;
    border-radius: 50px;
    padding: 12px 28px;
    margin-bottom: 20px;
}
.mrm-grev__intro-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.mrm-grev__intro-rating {
    font-size: 22px;
    font-weight: 800;
    color: #2d3e45;
}
.mrm-grev__intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}
.mrm-grev__intro-text strong {
    color: #2d3e45;
}

/* Quote Cards Grid */
.mrm-grev__quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.mrm-grev__quote-card {
    background: #fff;
    border: 1px solid #e8e2d6;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow .15s, transform .15s;
}
.mrm-grev__quote-card:hover {
    box-shadow: 0 6px 20px rgba(74,102,112,.1);
    transform: translateY(-2px);
}

.mrm-grev__quote-stars {
    display: flex;
    gap: 1px;
    margin-bottom: 12px;
}

.mrm-grev__quote-text {
    margin: 0 0 16px;
    padding: 0;
    border: none;
    font-size: 15px;
    line-height: 1.65;
    color: #374151;
    font-style: italic;
}

.mrm-grev__quote-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mrm-grev__quote-author strong {
    font-size: 14px;
    color: #2d3e45;
}
.mrm-grev__quote-author span {
    font-size: 13px;
    color: #6b7280;
}

/* CTA Button */
.mrm-grev__cta {
    text-align: center;
}
.mrm-grev__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #5D7891;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: background .15s, transform .15s;
    box-shadow: 0 2px 8px rgba(74,102,112,.2);
}
.mrm-grev__cta-btn:hover {
    background: #4A6670;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74,102,112,.25);
}
.mrm-grev__cta-btn svg {
    flex-shrink: 0;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .mrm-grev__banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .mrm-grev__banner-left {
        justify-content: center;
    }
    .mrm-grev__quotes {
        grid-template-columns: 1fr;
    }
    .mrm-grev__intro-badge {
        padding: 10px 20px;
    }
    .mrm-grev__intro-rating {
        font-size: 18px;
    }
    .mrm-grev__cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mrm-grev__banner {
        padding: 12px 16px;
    }
    .mrm-grev__banner-text {
        font-size: 14px;
        text-align: center;
    }
    .mrm-grev__banner-link {
        width: 100%;
        justify-content: center;
    }
}
