/* Winston V3 — "Winston last acted X ago" persistent footer line. */

.last-action-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  color: var(--ink-faint);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: var(--tracking-snug);
  z-index: var(--z-sticky);
  pointer-events: none;
}
.last-action-footer:empty,
.last-action-footer:has([data-role="text"]:empty) {
  display: none;
}

/* Mobile (#143 H3): hide the footer entirely. It was floating over
   content on home (Top holdings), manager (chat composer), and portfolio
   (Performance chart) even with `bottom: var(--bottom-nav-h)` because
   the screens don't reserve space for it and several have their own
   fixed-positioned regions. The "next planned action" signal already
   lives on Home, and "Winston last acted" is operator-density chrome —
   mobile casual users don't need a perpetual ticker. */
@media (max-width: 1023px) {
  .last-action-footer { display: none; }
}
