/* 个人主页 /u/{id} */
.profile-page {
    background: var(--cm-bg, #f4f6f8);
    min-height: 100%;
}

.profile-header {
    background: #fff;
    padding: 16px 0 12px;
    margin-bottom: 8px;
}

.profile-user-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-user-main {
    flex: 1;
    min-width: 0;
}

.profile-nickname {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-v-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cm-primary, #00c3ce);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.profile-bio {
    font-size: 13px;
    color: var(--cm-text-secondary, #666);
    margin: 0 0 8px;
    line-height: 1.45;
}

.profile-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--cm-text-secondary, #666);
}

.profile-stats strong {
    color: var(--cm-text, #333);
    margin-right: 4px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.profile-feed-section {
    padding-bottom: 24px;
}

.profile-feed-tab {
    display: inline-block;
    background: #fff;
    padding: 10px 16px;
    border-radius: 6px 6px 0 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    box-shadow: 0 0 10px rgba(0, 87, 142, 0.08);
}

.profile-feed-section .feed-list {
    padding-top: 0;
}
