/* Shared: jump back to portfolio hub from any demo site */
.portfolio-bar {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.5rem;
  padding: 0.45rem 1.1rem;
  background: #0f0f10;
  color: #f4f1ea;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(244, 241, 234, 0.14);
  box-sizing: border-box;
}
.portfolio-bar a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.portfolio-bar a:hover,
.portfolio-bar a:focus-visible {
  text-decoration: underline;
  outline: none;
}
.portfolio-bar a:focus-visible {
  outline: 2px solid #f4f1ea;
  outline-offset: 3px;
  border-radius: 2px;
}
.portfolio-bar .portfolio-bar__hint {
  color: rgba(244, 241, 234, 0.5);
  font-weight: 500;
  font-size: 0.8rem;
}
@media (max-width: 480px) {
  .portfolio-bar .portfolio-bar__hint { display: none; }
}
