/* ─── Header ─── */ .mp-header { display: flex; align-items: center; justify-content: space-between; height: 52px; flex-shrink: 0; } .mp-header-title { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); } .mp-back { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: none; border: none; color: var(--text-secondary); cursor: pointer; transition: color var(--transition-fast), background var(--transition-fast); } .mp-back:hover { background: var(--bg-hover); color: var(--text-primary); }