/* ==================== 人才卡片网格 ==================== */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.talent-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.talent-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* ==================== 头像 ==================== */
.talent-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #e6f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.talent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talent-avatar-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #1d4ed8;
    background: #e6f7fc;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== 信息区 ==================== */
.talent-info {
    flex: 1;
    min-width: 0;
}

.talent-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-bottom: 4px;
}

.talent-name:hover {
    color: #1d4ed8;
}

.talent-position {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.talent-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.talent-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #555;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.talent-intro {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ==================== 空状态 ==================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.empty-state p {
    font-size: 15px;
}
