/* brand-shell.css - the HumanSpark brand bar that sits above the minisite's own
 * nav. Deliberately a simplified brand bar (identity + link home), NOT a clone of
 * the humanspark.ai mega-menu - this is a sub-property, and honesty about that
 * reads better than a fake top-level nav. Load LAST. Requires tokens.css.
 */
.hsbrand {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--hs-navy);
  padding: 0.55rem 1.1rem;
  border-bottom: 2px solid var(--hs-accent);
  font-family: var(--hs-font-body);
}
.hsbrand__logo { display: inline-flex; align-items: center; line-height: 0; }
.hsbrand__logo img { height: 26px; width: auto; display: block; }
.hsbrand__label {
  color: var(--hs-footer-text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.hsbrand__back {
  margin-left: auto;
  color: var(--hs-white);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.hsbrand__back:hover { color: var(--hs-accent); }

@media (max-width: 640px) {
  .hsbrand__label { display: none; }
}
