/* 移动端艺人详情页样式 */

body.mobile-app .m-artist-hero {
    padding: 24px 16px;
    text-align: center;
    background: var(--app-surface);
    border-bottom: 1px solid var(--app-border);
}

body.mobile-app .m-artist-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--app-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

body.mobile-app .m-artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.mobile-app .m-artist-hero .m-section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--app-text-primary);
    margin: 0 0 8px;
}

body.mobile-app .m-artist-hero .m-list-subtitle {
    font-size: 14px;
    color: var(--app-text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

