.bmm-board-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Center horizontally */
}

.bmm-card {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bmm-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50% !important;
    overflow: hidden;
    display: block;
    margin: 0 auto 10px auto;
}


.bmm-title {
    margin: 0;
    font-size: 28px;
    color: #222;
}

.bmm-name {
    margin: 5px 0;
    font-size: 1.1em;
    color: #555;
}

.bmm-email a {
    color: #0066cc;
    text-decoration: none;
}

.bmm-email a:hover {
    text-decoration: underline;
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .bmm-board-members {
        flex-direction: column;
        align-items: center;
    }

    .bmm-card {
        width: 90%;
        max-width: 350px;
    }
}
