.sbl-ledenlijst {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
}

.sbl-section {
    margin-bottom: 40px;
}

.sbl-section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.sbl-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
}

.sbl-grid-1 {
    grid-template-columns: repeat(1, minmax(260px, 1fr));
}

.sbl-grid-2 {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.sbl-grid-3 {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.sbl-grid-4 {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.sbl-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
    text-align: center;
}

.sbl-avatar-wrap {
    margin-bottom: 10px;
}

.sbl-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.sbl-name {
    font-size: 1.1rem;
    margin: 8px 0 2px;
}

.sbl-role {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

/* ----------------------------- */
/* ICONEN — DEZE MOETEN BUITEN DE MEDIA QUERY */
/* ----------------------------- */

.sbl-contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.sbl-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.sbl-icon:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.sbl-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Kleuren */
.sbl-icon-phone svg,
.sbl-icon-email svg,
.sbl-icon-maps svg {
    stroke: #333 !important;
    fill: none !important;
}

.sbl-icon-whatsapp svg {
    fill: #25D366 !important;
}

.sbl-grid-separator {
    margin-top: 2em;
}


/* ----------------------------- */
/* MOBIEL */
/* ----------------------------- */

@media (max-width: 768px) {
    .sbl-grid-2,
    .sbl-grid-3,
    .sbl-grid-4 {
        grid-template-columns: repeat(1, minmax(260px, 1fr));
    }
}