/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
:root, :host {
  --spacing: 0.25rem;
  --color-purple: var(--wp--preset--color--purple);
}
[data-lightbox-item] {
  cursor: zoom-in;
}
[data-lightbox-item]:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 4px;
}
body.lightbox-open {
  overflow: hidden;
}
.simple-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) 72px;
  grid-template-areas: "previous stage next";
  align-items: center;
  padding: 28px;
  color: var(--wp--preset--color--white);
  background: rgb(2 3 15 / 96%);
}
.simple-lightbox[hidden] {
  display: none;
}
.simple-lightbox__stage {
  display: grid;
  min-width: calc(var(--spacing) * 0);
  height: calc(100dvh - 56px);
  grid-area: stage;
  place-items: center;
}
.simple-lightbox__stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.simple-lightbox button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: calc(var(--spacing) * 0);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
  color: var(--wp--preset--color--white);
  background: rgb(255 255 255 / 8%);
  transition: border-color var(--transition-fast),background-color var(--transition-fast);
}
.simple-lightbox button:hover, .simple-lightbox button:focus-visible {
  border-color: rgb(255 255 255 / 70%);
  background: rgb(255 255 255 / 16%);
}
.simple-lightbox button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.simple-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
}
.simple-lightbox__arrow {
  justify-self: center;
}
.simple-lightbox__arrow--previous {
  grid-area: previous;
}
.simple-lightbox__arrow--next {
  grid-area: next;
}
.simple-lightbox__arrow[hidden] {
  display: none;
}
@media (max-width:680px) {
  .simple-lightbox {
    grid-template-columns: 52px minmax(0,1fr) 52px;
    padding: 16px 4px;
  }
  .simple-lightbox__stage {
    height: calc(100dvh - 32px);
  }
  .simple-lightbox button {
    width: 42px;
    height: 42px;
  }
  .simple-lightbox__close {
    top: 12px;
    right: 12px;
  }
}
