.saved-moment-card {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 14px;
      border-radius: 14px;
      background: #1a1a1a;
      border: 1px solid #252525;
      cursor: pointer;
      transition: background 120ms;
      margin-bottom: 8px;
    }

.saved-moment-card:active { background: #242424; }

.saved-moment-preview {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.45;
      font-style: italic;
    }

.saved-moment-preview.collapsed {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

.saved-moment-expand {
      font-size: 11px;
      color: var(--accent-soft);
      margin-top: 4px;
      cursor: pointer;
      font-weight: 600;
    }

.saved-moment-meta {
      font-size: 11px;
      color: #777;
      display: flex;
      gap: 12px;
      align-items: center;
    }

.saved-moment-char {
      color: var(--accent-soft);
      font-weight: 600;
    }

.saved-char-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 14px;
      background: #1a1a1a;
      border: 1px solid #252525;
      cursor: pointer;
      transition: background 120ms;
      margin-bottom: 8px;
    }

.saved-char-card:active { background: #242424; }

.saved-char-avatar {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: #2a2a2a;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-weight: 600;
      font-size: 17px;
      overflow: hidden;
    }

.saved-char-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.saved-char-info {
      flex: 1;
      min-width: 0;
    }

.saved-char-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--accent-soft);
    }

.saved-char-count {
      font-size: 12px;
      color: #777;
      margin-top: 1px;
    }

.saved-char-preview {
      font-size: 12px;
      color: #666;
      font-style: italic;
      margin-top: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

.saved-char-right {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      padding-right: 4px;
    }

/* Notification badge — hero icon & tab buttons */
    .notif-badge {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 18px;
      height: 18px;
      background: #e55;
      border-radius: 999px;
      font-size: 10px;
      font-weight: 700;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      pointer-events: none;
      box-shadow: 0 0 0 2px #111;
    }