/* BerlinZusammen – Unterstützende: Kartenliste mit kombinierbarem Filter (Partei + Bezirk) */

/* Filtergruppen (je eine Reihe für Partei und Bezirk) */
.bz-signers__filtergroup {
    margin-bottom: 14px;
}
.bz-signers__filterlabel {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b2ef9;
    margin-bottom: 8px;
}
.bz-signers__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bz-signers__filtergroup:last-of-type {
    margin-bottom: 22px;
}

.bz-signers__fbtn {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1033;
    cursor: pointer;
}
.bz-signers__fbtn.is-active {
    background: #6b2ef9;
    color: #fff;
    border-color: #6b2ef9;
}

.bz-signers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) {
    .bz-signers__grid { grid-template-columns: 1fr; }
}

.bz-signers__card {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
}
.bz-signers__card.is-hidden { display: none; }

/* Foto: einheitlich rund zugeschnitten */
.bz-signers__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ede8fe, #d8cdf8);
}
.bz-signers__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bz-signers__photo--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bz-signers__photo--fallback span {
    font-size: 18px;
    font-weight: 700;
    color: #6b2ef9;
}

.bz-signers__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1033;
    margin: 0 0 4px;
}
.bz-signers__meta { margin: 0 0 4px; }
.bz-signers__party {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}
.bz-signers__party--spd    { background: #ffe0e0; color: #c41e3a; }
.bz-signers__party--gruene { background: #e0f5d8; color: #3a7a1e; }
.bz-signers__party--linke  { background: #f3dcf0; color: #a01e7a; }
.bz-signers__party--cdu    { background: #e2e2e2; color: #1a1a1a; }

.bz-signers__district {
    font-size: 12px;
    color: rgba(0,0,0,0.55);
    margin: 0;
}

/* Leer-Meldung, wenn eine Filterkombination keine Treffer hat */
.bz-signers__empty {
    margin: 18px 0 0;
    padding: 18px 20px;
    background: #f7f5ff;
    border-radius: 10px;
    font-size: 14px;
    color: #4a3f6b;
    text-align: center;
}
