/* ===== Editorial Board 页面增强样式（规模条/头衔/领域标签/会议徽章） ===== */

/* 规模统计条 */
.eb-scale-band {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin: -16px 0 40px; padding: 0 6px;
}
.eb-scale-item {
    background: #FFFFFF; border: 2px dashed #C9BCD9; border-radius: 12px;
    padding: 18px 12px; text-align: center; transition: all 0.2s ease;
}
.eb-scale-item:hover { border-color: #D4AF37; box-shadow: 0 6px 16px rgba(74, 58, 107, 0.10); }
.eb-scale-num { display: block; font-size: 30px; font-weight: 900; color: #4A3A6B; font-family: var(--eb-serif); }
.eb-scale-label { display: block; margin-top: 6px; font-size: 13px; color: #6B6882; font-weight: 600; }
.eb-scale-band-note {
    grid-column: 1 / -1; margin: 4px 0 0; font-size: 12.5px; color: #6B6882; text-align: center;
}

/* 卡片：头衔 + 研究领域标签 + 可点击整卡 */
.eb-card .eb-name-line { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.eb-card h3 small { display: inline-block; margin-top: 0; }
.eb-title-chip {
    display: inline-block; padding: 2px 10px; border-radius: 999px;
    background: #F0EDF5; color: #4A3A6B; font-size: 12px; font-weight: 700;
}
.eb-field-badge {
    display: inline-block; margin-top: 10px; padding: 4px 12px;
    background: #FAF6EA; border: 1px solid rgba(212, 175, 55, 0.55); border-radius: 999px;
    color: #8A5A00; font-size: 12.5px; font-weight: 600;
}
/* 卡片底部「查看个人主页」已统一为姓名链接，此处保留头衔/领域标签样式 */

/* 会议 Logo 文字徽章（替换“Logo 待提供”占位） */
.eb-logo-chip {
    display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 20px 28px; border-radius: 10px; text-align: center;
}
.eb-logo-chip .chip-mark {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #4A3A6B, #6B5A8A); color: #D4AF37;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--eb-serif); font-size: 18px; font-weight: 900;
    border: 2px solid #D4AF37;
}
.eb-logo-chip .chip-name { color: #4A3A6B; font-size: 15px; font-weight: 700; }
.eb-logo-chip .chip-role { color: #6B6882; font-size: 12px; }

/* 会议板块与编委关联提示条 */
.eb-conference-tie {
    margin-top: 20px; padding: 14px 18px;
    background: #FAF6EA; border: 1px dashed rgba(212, 175, 55, 0.6); border-radius: 10px;
    display: flex; align-items: center; gap: 12px;
}
.eb-conference-tie .tie-icon {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
    background: #4A3A6B; color: #D4AF37; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.eb-conference-tie p { margin: 0; color: #4A3A6B; font-size: 13.5px; line-height: 1.7; }
.eb-conference-tie strong { color: #4A3A6B; }

/* 锚点快速导航条 */
.eb-quick-nav {
    display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
    margin-bottom: 24px; padding: 10px 16px;
    background: #F8F6FC; border: 1px solid #E0D9EB; border-radius: 999px;
}
.eb-quick-nav-label {
    padding: 4px 12px; border-radius: 999px;
    background: #4A3A6B; color: #FFFFFF; font-size: 12.5px; font-weight: 700;
}
.eb-quick-nav a {
    padding: 6px 14px; border-radius: 999px;
    color: #4A3A6B; font-size: 13.5px; font-weight: 600; text-decoration: none;
    transition: all 0.2s ease;
}
.eb-quick-nav a:hover { background: #D4AF37; color: #4A3A6B; }

/* 回到顶部按钮 */
.eb-back-top {
    position: fixed; right: 28px; bottom: 28px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%; border: 2px dashed rgba(255, 255, 255, 0.5);
    background: #4A3A6B; color: #D4AF37; font-size: 20px; font-weight: 700; line-height: 1;
    cursor: pointer; box-shadow: 0 6px 18px rgba(74, 58, 107, 0.35);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: all 0.3s ease;
}
.eb-back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.eb-back-top:hover { background: #D4AF37; color: #4A3A6B; border-color: rgba(74, 58, 107, 0.5); }

/* 响应式 */
@media (max-width: 768px) {
    .eb-scale-band { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .eb-quick-nav { border-radius: 16px; }
}
