/* ——— Ervaringen hero ——— */
.erv-hero { background: linear-gradient(135deg, color-mix(in srgb, var(--kleur-thema,#e91b23) 70%, #000) 0%, var(--kleur-thema,#e91b23) 100%); color: #fff; padding: 1rem 0 0.75rem; }
.erv-hero h1 { font-size: 1.4rem; margin-bottom: 0.1rem; }
.erv-hero .erv-score { font-size: 0.9rem; opacity: .9; }
.erv-hero .erv-score .fa-star { color: #f5b301; }

/* ——— Filter pills ——— */
.filter-wrap { padding: 0.6rem 0 0.25rem; }
.filter-wrap .btn-pill {
    border-radius: 50px; font-size: 0.82rem; padding: 0.25rem 0.8rem;
    border: 1px solid #ddd; background: #fff; color: #555; margin: 2px;
    transition: all 0.15s;
}
.filter-wrap .btn-pill:hover { border-color: var(--kleur-thema,#e91b23); color: var(--kleur-thema,#e91b23); }
.filter-wrap .btn-pill.active { background: var(--kleur-thema,#e91b23); border-color: var(--kleur-thema,#e91b23); color: #fff; font-weight: 600; }

/* ——— Review cards ——— */
.review-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    background: #fff;
    height: 100%;
    display: flex; flex-direction: column;
    transition: box-shadow 0.2s;
    overflow: hidden;
}
.review-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.10); }
.review-card .rc-body {
    padding: 1.2rem 1.25rem 0.75rem;
    flex: 1;
    font-size: 0.92rem; line-height: 1.65; color: #444;
    font-style: italic;
}
.review-card .rc-body::before {
    content: '\201C';
    font-size: 2.5rem; line-height: 1; color: var(--kleur-thema,#e91b23); opacity: .25;
    display: block; margin-bottom: -0.5rem;
}
.review-card .rc-footer {
    padding: 0.6rem 1.25rem 0.9rem;
    border-top: 1px solid rgba(0,0,0,.06);
    font-size: 0.8rem; color: #888;
}
.review-stars-sm .fa-star  { color: #f5b301; font-size: 0.85rem; }
.review-stars-sm .fa-star-o { color: #ddd;    font-size: 0.85rem; }
.google-pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.72rem; color: #555;
    background: #f1f3f4; border-radius: 20px; padding: 2px 8px;
    margin-bottom: 4px;
}

/* Cards grid */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 576px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* Verberg gefilterde cards */
.js-review { display: flex; flex-direction: column; }
.js-review[style*="display: none"] { display: none !important; }

/* ——— Zoekbalk ——— */
.erv-search-wrap { padding: 0.4rem 0 0.5rem; }
.erv-search-wrap .input-group { max-width: 320px; }
.erv-search-wrap .form-control {
    border-radius: 50px 0 0 50px; border-color: #ddd;
    font-size: 0.88rem; padding-left: 1rem;
}
.erv-search-wrap .input-group-text {
    border-radius: 0 50px 50px 0; background: #fff;
    border-color: #ddd; color: #aaa;
}
