/*
 * Replace remaining graphical marks from the mirrored source with IMA-ART.
 * Text and link destinations are rewritten in the static HTML and chunks.
 */

img[src="/branding/logo-symbol.svg"],
img[src="/branding/logo-symbol-black.svg"],
img[src="/branding/title-power-container.svg"] {
  visibility: hidden !important;
}

img[src="/branding/logo-wordmark-figma.svg"] {
  content: url("/branding/ima-art-blanche.png");
  object-fit: contain;
}

div:has(
    > img[src="/branding/logo-symbol-black.svg"][class*="h-[2.5625rem]"]
  ) {
  background: url("/branding/ima-art-blanche.png") center / contain no-repeat;
  display: block !important;
  filter: invert(1);
  height: 96px !important;
  width: 72px !important;
}

div:has(
    > img[src="/branding/logo-symbol-black.svg"][class*="h-[2.5625rem]"]
  )
  > * {
  display: none !important;
}

@media (max-width: 767px) {
  div:has(
      > img[src="/branding/logo-symbol-black.svg"][class*="h-[2.5625rem]"]
    ) {
    height: 64px !important;
    width: 48px !important;
  }
}
