/* Shared customer-site brand: use the supplied artwork without redrawing it. */
.topbar-title.avf-brand-title {
  --avf-brand-logo-size:32px;
  --avf-brand-logo-gap:8px;
  --avf-brand-logo-radius:6px;
  display:flex;
  align-items:center;
  gap:var(--avf-brand-logo-gap);
}
.avf-brand-title .avf-brand-logo {
  width:var(--avf-brand-logo-size);
  height:var(--avf-brand-logo-size);
  flex:0 0 var(--avf-brand-logo-size);
  object-fit:contain;
  border-radius:var(--avf-brand-logo-radius);
}
.avf-brand-title .avf-brand-name {
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
