/* ============================================================
 * 人物卡片小部件
 * ============================================================ */
.qing-pcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 30px 20px;
    transition: transform .25s ease;
}
a.qing-pcard:hover { transform: translateY(-4px); }

/* 圆形头像 */
.qing-pcard-avatar {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}
.qing-pcard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 姓名 */
.qing-pcard-name {
    margin-top: 20px;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

/* 底部：图标 + 文案 */
.qing-pcard-bottom {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.qing-pcard-icon {
    display: inline-flex;
    align-items: center;
}
.qing-pcard-icon i   { font-size: 22px; color: #ff6700; line-height: 1; }
.qing-pcard-icon svg { width: 22px; height: 22px; fill: #ff6700; display: block; }
.qing-pcard-caption {
    font-size: 24px;
    color: #eee;
    line-height: 1.2;
}
