.bka-bestuur-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.bka-bestuur-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.bka-bestuur-card:hover {
    transform: translateY(-3px);
}

.bka-bestuur-photo-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f3f5f6;
}

.bka-bestuur-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.bka-bestuur-content {
    padding: 22px;
}

.bka-bestuur-name {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.bka-bestuur-role {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.4;
    opacity: .82;
}

.bka-bestuur-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.45;
}

.bka-bestuur-contact a {
    text-decoration: none;
}

.bka-bestuur-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .bka-bestuur-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bka-bestuur-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
