.member img {
    width: 100px;
    height: 130px; /* Passport-like aspect ratio */
    border-radius: 5px; /* Slightly rounded corners */
    object-fit: cover;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 576px) {
    .member img {
        width: 50%;
        height: auto;
        /* border-radius:s 50%; */
    }
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
