.n-insight-bar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--n-surface-raised);
  border: 1px solid var(--n-border-subtle);
  border-radius: var(--n-radius-lg);
  padding: 1.1rem 1.25rem;
  margin-top: 1.25rem;
  border-left: 3px solid rgba(34, 197, 94, 0.65);
}

.theme-light .n-insight-bar {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  border-left-color: #22c55e;
}

.n-insight-icon {
  width: 3px;
  min-height: 2.75rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(180deg, #22c55e 0%, rgba(34, 197, 94, 0.35) 100%);
}

.n-insight-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary, #94a3b8);
  line-height: 1.6;
  flex: 1;
}

.theme-light .n-insight-text { color: #475569; }

.n-insight-time {
  font-size: 0.68rem;
  color: var(--text-muted, #64748b);
  flex-shrink: 0;
  white-space: nowrap;
  margin-top: 2px;
}

/* ── PANEL (card) ───────────────────────────────────────────── */
.n-panel {
  background: var(--n-surface-raised);
  border: 1px solid var(--n-border-subtle);
  border-radius: var(--n-radius-lg);
  padding: 1.75rem 1.85rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset, 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease;
  overflow: hidden;
  min-width: 0;
}

.theme-light .n-panel {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(15, 23, 42, 0.05);
}

.n-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--n-border-subtle);
}

.theme-light .n-panel-header { border-bottom-color: rgba(15, 23, 42, 0.06); }

.n-panel-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary, #f1f5f9);
  letter-spacing: -0.015em;
}

.theme-light .n-panel-title { color: #0f172a; }

.n-panel-sub {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted, #64748b);
  line-height: 1.55;
  max-width: 36rem;
}

.n-panel-meta {
  font-size: 0.72rem;
  color: var(--text-muted, #64748b);
  white-space: nowrap;
  margin-top: 2px;
}

/* ── STALE BAR ──────────────────────────────────────────────── */
.n-stale-bar {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: var(--n-radius-md);
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #fbbf24;
  margin: 0 0 1rem;
}

.theme-light .n-stale-bar {
  background: #fffbeb;
  color: #92400e;
  border-color: rgba(217, 119, 6, 0.22);
}
.n-stale-bar.hidden { display: none; }

/* ── CHART ──────────────────────────────────────────────────── */
