.blog-thema-zoom-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-background);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}
.blog-thema-zoom-overlay.is-active {
  opacity: 0.95;
  pointer-events: auto;
  cursor: zoom-out;
}
.blog-thema-zoomable {
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}
img.is-zoomed {
  position: relative;
  z-index: 101;
  cursor: zoom-out;
}