/* Shared header lockup: brand-green mark on a white tile. */
#sharedNav .shared-nav-brand { gap: 10px; align-items: center; }
#sharedNav .shared-nav-lockup-tile {
  width: 46px; height: 46px; flex: 0 0 46px;
  background: #fff; border: 0; border-radius: 12px;
  box-shadow: none; overflow: visible;
}
#sharedNav .shared-nav-lockup-tile img {
  /* Tile = drawing + 2 × drawing/6; drawing therefore occupies 75%. */
  display: block; width: 75%; height: 75%;
  object-fit: contain; filter: none;
}
#sharedNav .shared-nav-brand::after {
  display: block; color: #fff; font-size: 15px;
  font-weight: 500; line-height: 1.5; white-space: nowrap;
}
@media (max-width: 640px) {
  #sharedNav .shared-nav-brand { gap: 8px; }
  #sharedNav .shared-nav-lockup-tile { width: 38px; height: 38px; flex-basis: 38px; }
  #sharedNav .shared-nav-brand::after { font-size: 13px; }
}
