/* Platform 99.1 — responsive header logo (no stretch / CLS-safe)
   Must beat .fe885-header__brand--has-logo .fe885-header__logo { display:block } in the bundle. */
.fe885-header__logo {
  width: auto;
  max-height: 46px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}
.fe885-header__brand--has-logo .fe885-header__logo--desktop {
  display: none !important;
  max-width: 200px;
  width: auto;
  height: auto;
  max-height: 46px;
}
.fe885-header__brand--has-logo .fe885-header__logo--compact {
  display: block !important;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .fe885-header__brand--has-logo .fe885-header__logo--desktop {
    display: block !important;
  }
  .fe885-header__brand--has-logo .fe885-header__logo--compact {
    display: none !important;
  }
}
/* If only compact exists (no desktop img), keep compact visible on all breakpoints */
.fe885-header__brand--has-logo:not(:has(.fe885-header__logo--desktop)) .fe885-header__logo--compact {
  display: block !important;
}
