/*
 * 师资力量顶栏与专业带头人列表
 * 作用域：body.sz-site
 */
body.sz-site{
  --sz-primary:#e83521;
  --sz-text:#1f1f1f;
  --sz-muted:#666;
}

body.sz-site .site-header .brand{
  gap:14px;
  min-width:0;
}

body.sz-site .site-header .brand-name{
  position:relative;
  display:inline-flex;
  align-items:center;
  max-width:min(280px,36vw);
  margin:0;
  padding:8px 16px;
  color:var(--sz-primary);
  font-family:"Microsoft YaHei","PingFang SC",sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.12em;
  line-height:1.2;
  white-space:nowrap;
  background:#fff;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.95);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

body.sz-site .site-header .lang-btn,
body.sz-site .site-header .search-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  min-width:42px;
  padding:0;
  box-sizing:border-box;
  text-decoration:none;
}

body.sz-site .site-header .lang-btn{
  font-size:11px;
  font-weight:700;
  letter-spacing:0;
  line-height:0;
}

body.sz-site .site-header .lang-btn-grid{
  display:grid;
  grid-template-columns:max-content;
  grid-template-rows:max-content max-content;
  place-items:center;
  line-height:1;
  pointer-events:none;
}

body.sz-site .site-header .lang-btn-grid span{
  display:block;
  width:1em;
  height:1em;
  line-height:1em;
  text-align:center;
}

body.sz-site .site-header .search-btn svg{
  display:block;
}

/* 专业带头人人物卡：保留旧版 姓名 / 大图 / 简介，视觉对齐 2026 列表卡片 */
.sz-person-shell{
  width:min(1080px,92vw);
}

.sz-person-list{
  display:grid;
  gap:28px;
}

.sz-person{
  display:block;
  padding:32px 40px 40px;
  background:#fff;
  border:1px solid rgba(0,0,0,.07);
  border-radius:24px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  color:inherit;
  text-decoration:none;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
}

.sz-person:hover,
.sz-person:focus-visible{
  transform:translateY(-6px);
  border-color:rgba(185,20,18,.22);
  box-shadow:0 22px 48px rgba(0,0,0,.1);
}

.sz-person h2{
  margin:0;
  padding:8px 0 18px;
  border-bottom:1px solid rgba(0,0,0,.12);
  color:#161616;
  font-size:24px;
  font-weight:800;
  letter-spacing:.06em;
  text-align:center;
  line-height:1.4;
}

.sz-person-photo{
  width:min(500px,100%);
  margin:24px auto 8px;
  overflow:hidden;
  border-radius:18px;
  background:#eee;
}

.sz-person-photo img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:50 / 33;
  object-fit:cover;
}

.sz-person p{
  margin:20px 0 0;
  color:var(--sz-muted);
  font-size:16px;
  line-height:1.9;
  text-indent:2em;
}

.sz-person--no-photo p{
  margin-top:18px;
}

@media (max-width: 1080px){
  body.sz-site .site-header .brand-name{
    font-size:14px;
    padding:6px 12px;
    letter-spacing:.08em;
  }
}

@media (max-width: 640px){
  .sz-person{
    padding:22px 18px 26px;
    border-radius:18px;
  }

  .sz-person h2{
    font-size:18px;
    padding-bottom:14px;
  }

  .sz-person p{
    font-size:15px;
    text-indent:2em;
  }

  .sz-person-photo{
    margin-top:16px;
    border-radius:12px;
  }
}
