/* ================= 全部演职员表 (Album Members) ================= */

.pb-60 {
    padding-bottom: 60px;
}

/* 1. 页面上下文头部 */
.album-context-header {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 24px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    margin-bottom: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    color: #666;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    transition: all 0.2s;
    margin-right: 40px;
    flex-shrink: 0;
}
.btn-back i { font-size: 18px; margin-right: 4px; }
.btn-back:hover {
    background: var(--primary);
    color: #fff;
}

.context-info {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid #eee;
    padding-left: 40px;
}
.context-cover {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.context-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin: 0 0 6px 0;
}
.context-text p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* 2. 团队分组标题 */
.group-title {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.group-title i {
    color: var(--primary);
    font-size: 26px;
    vertical-align: middle;
}

/* 3. 卡片网格 (核心：3列横向信息流) */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 一行3个 */
    gap: 20px; /* 卡片之间的间距 */
}

/* 4. 单个人员卡片 */
.member-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

/* 悬停时的微浮起与变色 */
.member-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(19, 194, 194, 0.1);
}

/* 头像区 */
.member-avatar-box {
    flex-shrink: 0;
    margin-right: 15px;
}
.member-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f9f9f9;
    background: #eee;
}

/* 信息区 */
.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* 防止名字过长撑破 Flexbox */
}

.member-name {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
a.member-name:hover {
    color: var(--primary);
}

.member-role {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 操作区 (关注按钮) */
.member-action {
    flex-shrink: 0;
    margin-left: 15px;
}

.btn-follow-member {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.btn-follow-member:hover {
    background: var(--primary);
    color: #fff;
}

/* 已关注状态 (只显示一个勾，极简不占地) */
.btn-follow-member.followed {
    background: #f5f5f5;
    border-color: transparent;
    color: #999;
    padding: 4px 10px;
}
.btn-follow-member.followed:hover {
    background: #eee;
    color: #666;
}