/*
 * Focused wordmark state correction layered after public-premium.css?v=9.
 * The shared scroll controller removes `.scrolled` at the top of public pages;
 * non-editorial pages then sit over a dark hero and require the ivory mark.
 * Editorial pages own an opaque theme surface and retain coffee/ivory parity.
 */
.header:not(.scrolled):not(.header-transparent) .logo-image {
  filter: brightness(0) invert(1);
}

:root[data-theme-resolved='light'] body[data-editorial-family]
  .header:not(.header-transparent) .logo-image {
  filter: brightness(0) saturate(100%) invert(21%) sepia(13%) saturate(981%)
    hue-rotate(332deg) brightness(91%) contrast(88%);
}

:root[data-theme-resolved='dark'] body[data-editorial-family]
  .header:not(.header-transparent) .logo-image {
  filter: brightness(0) invert(1);
}
