﻿.about-page {
    background: #fff;
}

/* 现任领导列表 */
.leaders-list {
    display: flex;
    flex-direction: column;
    gap: 58px;
    margin-bottom: 105px;
}

/* 领导卡片 */
.leader-card {
    display: flex;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-decoration: none;
    /* transition: all 0.3s ease; */
    height: 222px;
}

.leader-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.leader-photo {
    width: 166px;
    height: 222px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.leader-info {
    flex: 1;
    min-width: 0;
    padding: 24px 30px;
    background: #fff;
    /* transition: all 0.3s ease; */
    position: relative;
}

/* 院徽水印装饰 */
.leader-info::after {
    content: '';
    position: absolute;
    right: 16px;
    bottom: 23px;
    width: 100px;
    height: 100px;
    background: url('../hnu-images/about/logo-watermark@2x.png') center center no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.leader-info > * {
    position: relative;
    z-index: 1;
}

/* 领导卡片hover：红色纹理背景 */
.leader-card:hover .leader-info {
    background: #C41E24 url('../hnu-images/about/leader-card-red-bg@2x.png') center center no-repeat;
    background-size: cover;
}

.leader-position-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
    /* transition: color 0.3s ease; */
}

.leader-card:hover .leader-position-name {
    color: #fff;
}

.leader-position-name strong {
    font-weight: 600;
}

.leader-meta {
    font-size: 14px;
    color: #000;
    line-height: 2;
    /* transition: color 0.3s ease; */
}

.leader-card:hover .leader-meta {
    color: #fff;
}

.leader-meta span {
    color: #000;
    /* transition: color 0.3s ease; */
}

.leader-card:hover .leader-meta span {
    color: rgba(255, 255, 255, 0.85);
}

/* ==================== 移动端适配 ==================== */
@media (max-width: 768px) {
    .leader-photo {
        width: 120px;
        height: 150px;
    }

    .leader-info {
        padding: 14px 16px;
    }

    .leader-info::after {
        width: 60px;
        height: 60px;
        right: 12px;
    }

    .leader-position-name {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .leader-meta {
        font-size: 13px;
        line-height: 1.75;
    }
}