/* =========================================================
   特邀嘉宾 —— 浅色自适应 H5 样式（复用议程配色）
   白卡片 + 浅灰底(#f4f6f9) + 品牌橙强调(#e85d04)
   ========================================================= */

.guest-page {
    background: #f4f6f9;
    min-height: 60vh;
    padding-bottom: 48px;
}

/* ===== 嘉宾列表总览（横排：头像左、名字右） ===== */
.guest-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 10px;
    padding: 0;
    list-style: none;
}
.guest-card {
    background: #fff;
    border: 1px solid var(--border, #e0e0e0);
    border-radius: var(--radius, 8px);
    overflow: hidden;
    transition: all .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.guest-card:hover {
    border-color: var(--accent, #e85d04);
    box-shadow: 0 6px 18px rgba(30,58,95,.12);
    transform: translateY(-2px);
}
.guest-card-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
}
.guest-card-photo {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef1f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
    border-radius: 50%;
}
.guest-photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #1e3a5f), var(--primary-light, #2c5f8a));
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.guest-card-meta { min-width: 0; }
.guest-card-name {
    text-align: left;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--primary, #1e3a5f);
    padding: 0;
}
.guest-card-title {
    text-align: left;
    font-size: .8rem;
    color: var(--text-light, #6c7a89);
    padding: 2px 0 0;
    line-height: 1.4;
}

/* ===== 嘉宾详情页 ===== */
.guest-single-page { padding-top: 18px; }
.guest-detail-card {
    background: #fff;
    border: 1px solid var(--border, #e0e0e0);
    border-radius: var(--radius, 8px);
    padding: 26px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.guest-detail-head {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border, #e0e0e0);
    margin-bottom: 18px;
}
.guest-detail-photo { flex: 0 0 auto; }
.guest-detail-photo .guest-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e02020;
    object-fit: cover;
    object-position: center;
}
.guest-photo-placeholder.lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e02020;
    font-size: 2.6rem;
}
.guest-detail-meta { min-width: 0; }
.guest-detail-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary, #1e3a5f);
    line-height: 1.3;
}
.guest-detail-title {
    margin-top: 8px;
    font-size: .95rem;
    color: var(--accent, #e85d04);
    font-weight: 600;
}
.guest-detail-bio { font-size: .9rem; line-height: 1.8; color: var(--text, #2d3436); }
.guest-detail-bio-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary, #1e3a5f);
    margin: 18px 0 10px;
    padding-left: 10px;
    border-left: 3px solid var(--accent, #e85d04);
}

/* 参与议程列表 */
.guest-agenda-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.guest-agenda-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafbfc;
    border: 1px solid var(--border, #e0e0e0);
    border-radius: var(--radius-sm, 4px);
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text, #2d3436);
    transition: all .2s;
}
.guest-agenda-item a:hover {
    border-color: var(--accent, #e85d04);
    background: #fff;
}
.guest-agenda-day {
    flex: 0 0 auto;
    font-size: .74rem;
    font-weight: 600;
    color: var(--primary, #1e3a5f);
    background: rgba(30,58,95,.08);
    padding: 3px 10px;
    border-radius: 12px;
}
.guest-agenda-session {
    flex: 1;
    min-width: 0;
    font-size: .92rem;
    font-weight: 600;
}
.guest-agenda-time {
    flex: 0 0 auto;
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent, #e85d04);
    font-variant-numeric: tabular-nums;
}

/* 议程页主讲嘉宾 → 嘉宾详情 链接（头像/姓名可点） */
.agenda-speaker-name a,
.agenda-detail-speaker .agenda-speaker-name a {
    color: var(--primary, #1e3a5f);
    text-decoration: none;
}
.agenda-speaker-name a:hover,
.agenda-detail-speaker .agenda-speaker-name a:hover {
    color: var(--accent, #e85d04);
    text-decoration: underline;
}

/* ===== 移动端适配 ===== */
@media (max-width: 768px) {
    .guest-card-link { gap: 12px; padding: 10px 12px; }
    .guest-card-photo { width: 52px; height: 52px; }
    .guest-photo-placeholder { width: 52px; height: 52px; font-size: 1.4rem; }
    .guest-detail-head { gap: 16px; }
    .guest-detail-photo .guest-photo,
    .guest-photo-placeholder.lg { width: 92px; height: 92px; }
    .guest-detail-name { font-size: 1.35rem; }
}
@media (max-width: 480px) {
    .guest-card-name { font-size: .98rem; }
    .guest-card-title { font-size: .76rem; }
}
