/* ══ BRAND BAR ══ */
/* Shared top bar — identical on every page (Row 1) */

#brand-bar {
  min-height: 57px;
}

.brand-bar {
  background: white;
  border-bottom: 1px solid var(--grey-200);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 101;
}

.brand-bar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-bar-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-bar-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: -0.3px;
}
