.team-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:20px;
}

.team-card{
background:#f6f7fb;
border-radius:18px;
padding:30px 20px;
text-align:center;
border:1px solid #e6e8ef;
transition:all .25s ease;
}

.team-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.avatar{
width:100px;
height:100px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.team-card h3{
margin:8px 0;
font-size:18px;
}

.role{
color:#666;
font-size:14px;
margin-bottom:8px;
}

.desc{
color:#999;
font-size:13px;
}

/* 手机自适应 */
@media (max-width:768px){
.team-grid{
grid-template-columns:1fr;
}
}

.card-link{
text-decoration:none;
color:inherit;
display:block;
}