/* ============================================================
   ED28 V2 — Account shell (User Center / Author Center)
   ============================================================ */

.profile-header {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  flex-wrap: wrap;
}
.profile-info { flex: 1; min-width: 240px; }
.profile-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.profile-name { font-size: var(--text-2xl); font-weight: 700; }
.profile-bio { color: var(--text-secondary); font-size: var(--text-sm); max-width: 520px; line-height: var(--leading-relaxed); margin-top: 6px; }
.profile-stats { display: flex; gap: var(--space-8); margin-top: var(--space-4); flex-wrap: wrap; }
.profile-stat .num { font-family: var(--font-mono); font-size: var(--text-lg); font-weight: 700; }
.profile-stat .label { font-size: var(--text-xs); color: var(--text-tertiary); }
.profile-actions { display: flex; gap: 10px; flex-shrink: 0; }

.account-list-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}
.account-list-row:last-child { border-bottom: none; }

.history-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
.history-item:last-child { border-bottom: none; }
.history-item .icon-wrap {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-surface-3); color: var(--text-secondary); flex-shrink: 0;
}
.history-item .icon-wrap svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .account-list-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---- Stage 2D: 作者认证角标 ---- */
.profile-name-row .verified-badge { display: inline-flex; align-items: center; gap: 4px; color: var(--brand-400); font-size: var(--text-xs); font-weight: 600; }
.profile-name-row .verified-badge svg { width: 15px; height: 15px; }
