/* ============================================================
   领导成员页（大气编辑式版式）
   设计取向：克制配色、编辑式序号、素色现任标、细分隔线，
   去除渐变顶条与渐变胶囊等"AI 模板感"元素，强调留白与权威感。
   ============================================================ */

/* ===== 区块标题（与新闻页面 panel-title 字号、字重保持一致） ===== */
.section-head { margin-bottom: 30px; }
.eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-blue);
    margin-bottom: 10px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    position: relative;
    padding-left: 14px;
    margin: 0;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 4px;
    height: 0.7em;
    background: var(--primary-blue);
    border-radius: 2px;
}
.section-lead {
    margin-top: 14px;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.85;
    color: #6c7c92;
}

/* ===== 核心领导：三列竖向名片 ===== */
.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leader-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 42px 36px 36px;
    background: #fff;
    border: 1px solid #e7eef7;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.leader-card:hover {
    border-color: #c3d6ee;
    box-shadow: 0 18px 42px rgba(16, 42, 84, 0.08);
    transform: translateY(-3px);
}
/* 现任领导以淡蓝底作层次区分（无渐变、无顶条） */
.leader-card.is-current {
    background: #f7faff;
    border-color: #d4e3f6;
}

/* 照片：放大、不裁剪（完整呈现） */
.leader-photo {
    width: 100%;
    max-width: 260px;
    height: 320px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
}

.leader-body {
    margin-top: 24px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-name {
    font-size: 30px;
    font-weight: 800;
    color: #0e2c54;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* 届次标签：素色底、无渐变，放在姓名下方 */
.leader-badge {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #ffffff;
    background: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 999px;
    line-height: 1.5;
}
/* 现任小标：实色、窄字距，去 AI 渐变 */
.leader-now {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 14px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 999px;
    vertical-align: 5px;
}

.leader-role {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #3a4a5e;
}

.leader-term {
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
    border-top: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #7a8aa0;
    letter-spacing: .5px;
}
.leader-term b {
    color: #0e2c54;
    font-weight: 700;
    font-size: 15px;
    margin-left: 10px;
}

/* ===== 新闻发言人及秘书处：小卡片 ===== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 26px;
    background: #fff;
    border: 1px solid #e7eef7;
    border-radius: 16px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.staff-card:hover {
    border-color: #c3d6ee;
    box-shadow: 0 14px 34px rgba(16, 42, 84, 0.07);
    transform: translateY(-3px);
}

.staff-photo-wrap {
    width: 150px;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f6fb;
}
.staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-avatar {
    width: 110px;
    height: 140px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

.staff-name {
    margin-top: 18px;
    font-size: 19px;
    font-weight: 700;
    color: #0e2c54;
    letter-spacing: 1px;
}

.staff-role {
    margin-top: 6px;
    font-size: 13px;
    color: #5b6f88;
    line-height: 1.5;
}

/* ===== 响应式 ===== */
@media (max-width: 1100px) {
    .core-grid { grid-template-columns: repeat(2, 1fr); }
    .leader-photo {
        max-width: 230px;
        height: 290px;
    }
    .leader-name { font-size: 28px; }
    .staff-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .core-grid { grid-template-columns: 1fr; }
    .leader-card { padding: 34px 26px 30px; }
    .leader-photo {
        max-width: 220px;
        height: 270px;
        border-radius: 10px;
    }
    .leader-name { font-size: 26px; }
    .leader-badge { font-size: 11px; }
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .leader-photo {
        max-width: 200px;
        height: 246px;
    }
    .staff-grid { grid-template-columns: 1fr; }
}
