/* Our own additions on top of Super's vendored stylesheets.
   Kept separate so the vendored files stay pristine and are trivial to delete
   in the phase-2 clean rewrite. */

.notion-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
  cursor: zoom-out;
  animation: notion-lightbox-in 120ms ease-out;
}

.notion-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes notion-lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .notion-lightbox { animation: none; }
}

/* The menu button replaces Super's <div>; strip default button chrome. */
.super-navbar__menu-open {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
}
