.members-wrapper{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.member-card{
    display:flex;
    gap:30px;
    padding:30px 0;
    border-bottom:1px solid #ddd;
    align-items:flex-start;
}

.member-photo img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #f2f2f2;
}

.member-content{
    flex:1;
}

.member-name{
    font-size:30px;
    margin:0;
    cursor:pointer;
    color:#1d3f72;
    transition:0.2s;
}

.member-name:hover{
    color:#5d8ed1;
}

.member-role{
    font-style:italic;
    font-size:20px;
    margin-top:8px;
}

.member-affiliation,
.member-email,
.member-interests,
.member-site{
    margin-top:10px;
    font-size:18px;
    line-height:1.6;
}

.member-site a{
    color:#1d3f72;
    text-decoration:none;
}

.member-site a:hover{
    text-decoration:underline;
}

.member-bio{
    display:none;
    margin-top:20px;
    padding:20px;
    background:#f7f7f7;
    border-radius:14px;
    line-height:1.8;
    font-size:17px;
}

body{
   background:white !important;
}