/* ============================================
   Team Member Widget
   ============================================ */
.bai_tm_card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 30px 24px;
}

/* ========== 头部（头像 + 姓名） ========== */
.bai_tm_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* ========== 头像 ========== */
.bai_tm_avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ========== 姓名 ========== */
.bai_tm_name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

/* ========== 简介 ========== */
.bai_tm_desc {
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
