/* Static export fixes: keep WordPress-rendered layout, remove runtime-only hiding. */
img.thb-lazyload,
img.lazyload,
img.lazyloaded {
  opacity: 1 !important;
}

.pace,
.pace-inactive,
.thb-page-transition-overlay {
  display: none !important;
}

body {
  opacity: 1 !important;
}

#wrapper.thb-page-transition-on,
.thb-page-transition-on {
  opacity: 1 !important;
  animation: none !important;
}

#wrapper.thb-page-transition-on {
  opacity: 1 !important;
  transition: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

html.static-page-loading body::before,
html.static-page-leaving body::before {
  opacity: 1;
}

html.static-page-leaving body::before {
  transition-duration: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    display: none;
  }
}
