

/* === Topbar desktop visibility fix === */

/* === Show legacy link strip on desktop, hide on mobile === */
@media (min-width: 1025px) {
  .topbar { 
    display: block !important; 
    background: #fff; 
    border-bottom: 1px solid #d7dde1;
    z-index: 1001;
  }
  .topbar-inner { display: flex !important; align-items: center; height: 34px; }
}

/* Keep mobile clean */
@media (max-width: 1024px) {
  .topbar { display: none !important; }
}

/* Tighten spacing so there isn't a huge gap between strip and content */
.site-header { margin-top: 0 !important; }
