/* ============================================================

   领导成员页（大气编辑式版式）

   设计取向：克制配色、编辑式序号、素色现任标、细分隔线，

   去除渐变顶条与渐变胶囊等"AI 模板感"元素，强调留白与权威感。

   ============================================================ */



/* ===== 区块标题 ===== */

.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: repeat(2, 1fr);
        gap: 12px;
    }

    .leader-card { padding: 16px 10px 14px; border-radius: 14px; }

    .leader-photo {

        width: 100%;

        max-width: 100%;

        height: auto;

        aspect-ratio: 13 / 16; /* 与桌面端 260x320 同比例，等比缩放不裁切变形 */

        object-fit: cover;

        border-radius: 10px;

    }

    .leader-body { margin-top: 10px; }

    .leader-name { font-size: 17px; letter-spacing: 1px; margin-bottom: 6px; }

    .leader-badge { font-size: 10px; padding: 4px 8px; letter-spacing: 0; line-height: 1.4; }

    .leader-role { margin-top: 6px; font-size: 12px; }

    .leader-term { padding-top: 10px; font-size: 11px; }

    .leader-term b { font-size: 12px; margin-left: 6px; }

    /* 移动端：秘书处与核心领导一致，一行两列、间距收紧 */
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .staff-card { padding: 12px 8px; }

    .staff-name { font-size: 15px; }

    .staff-role { font-size: 12px; }

}

@media (max-width: 480px) {

    .leader-name { font-size: 16px; }

    /* 小屏同样保持一行两列 */
    .staff-grid { grid-template-columns: repeat(2, 1fr); }

    .staff-name { font-size: 14px; }

    .staff-role { font-size: 11px; }

}

/* ===== 副会长名录名片卡（与领导成员 / 常务理事名片风格一致） ===== */
.vc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.vc-card {
    position: relative;
    background: #fff;
    border: 1px solid #e7eef7;
    border-radius: 16px;
    padding: 20px 26px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.vc-card:hover {
    border-color: #c3d6ee;
    box-shadow: 0 18px 42px rgba(16, 42, 84, 0.08);
    transform: translateY(-3px);
}
.vc-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}
.vc-name {
    font-size: 20px;
    font-weight: 800;
    color: #0e2c54;
    letter-spacing: 1px;
    line-height: 1.2;
}
.vc-role {
    font-size: 14px;
    font-weight: 600;
    color: #3a6cb0;
    background: #eef4fc;
    border-radius: 6px;
    padding: 3px 10px;
}
.vc-org {
    margin-top: 10px;
    font-size: 15px;
    color: #6c7c92;
    line-height: 1.5;
}
/* 解除公共样式 720px 限制，使说明文字铺满右栏、不提前换行 */
.section-lead {
    max-width: 100%;
}
