/* Staff页面样式 */
/* 使用通用的 .page-container, .page-header, .page-title 样式 */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.staff-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(185, 148, 253, 0.2);
    border: 1px solid rgba(214, 190, 248, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(185, 148, 253, 0.3);
}

.staff-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b994fd, #d6bef8, #b994fd);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #d6bef8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 148, 253, 0.2);
}

.staff-member:hover .staff-avatar {
    border-color: #b994fd;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(185, 148, 253, 0.4);
}

.staff-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6b46c1;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(107, 70, 193, 0.1);
}

.staff-role {
    font-size: 1.1rem;
    color: #8b5cf6;
    margin-bottom: 15px;
    font-weight: 600;
}

.staff-bio {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.staff-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.staff-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b994fd 0%, #d6bef8 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(185, 148, 253, 0.3);
}

.staff-contact a:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(185, 148, 253, 0.4);
}

.staff-section {
    margin-bottom: 50px;
}

.staff-section-title {
    font-size: 2rem;
    color: #6b46c1;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.staff-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b994fd, #d6bef8);
    border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-container {
        padding: 10px;
    }

    .page-title {
        font-size: 2rem;
        padding: 20px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-member {
        padding: 20px;
    }

    .staff-avatar {
        width: 100px;
        height: 100px;
    }

    .staff-name {
        font-size: 1.3rem;
    }

    .staff-role {
        font-size: 1rem;
    }
}
