/*
 * Sanity Mode site-wide image blur.
 *
 * Applied when <body> carries the `swpt-sanity-blur` class, which is
 * injected by `ZpSwptModule::serviceGetSanityBodyClass` for viewers
 * who toggled sanity mode on (admins/moderators).
 *
 * Pure CSS: no transcoding, no cached files, no server cost.
 * Inert when the body class is absent.
 */

body.swpt-sanity-blur img,
body.swpt-sanity-blur video,
body.swpt-sanity-blur .bx-base-pofile-unit-cover  {
    filter: blur(16px) !important;
    clip-path: inset(0) !important;
}

body.swpt-sanity-blur .bx-logo img,
body.swpt-sanity-blur .sys-icon img,
body.swpt-sanity-blur .sys-icon-stack img,
body.swpt-sanity-blur img[src*="no-picture"],
body.swpt-sanity-blur img[src*="no-image"],
body.swpt-sanity-blur img[src$=".svg"] {
    filter: none !important;
}
