html.pugiles-gallery-open { overflow: hidden; }
dialog.pugiles-gallery {
  position: fixed;
  inset: 0;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 40px 60px;
  border: 0;
  background: rgba(0, 0, 0, .96);
  color: white;
  overflow: hidden;
}
dialog.pugiles-gallery[open] { display: flex; align-items: center; justify-content: center; }
dialog.pugiles-gallery::backdrop { background: #000; }
.pugiles-gallery .pugiles-gallery-photo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0;
}
.pugiles-gallery button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 56px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}
.pugiles-gallery button:hover { opacity: 1; }
.pugiles-gallery button:focus-visible { outline: 2px solid white; outline-offset: -4px; opacity: 1; }
.pugiles-gallery button[hidden] { display: none; }
.pugiles-gallery .pugiles-gallery-close { right: 10px; top: 5px; font-size: 36px; }
.pugiles-gallery-previous { left: 5px; top: calc(50% - 28px); }
.pugiles-gallery-next { right: 5px; top: calc(50% - 28px); }
.pugiles-gallery-status { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
@media (max-width: 640px) {
  dialog.pugiles-gallery { padding: 60px 36px; }
  .pugiles-gallery button { width: 36px; }
  .pugiles-gallery-previous { left: 0; }
  .pugiles-gallery-next { right: 0; }
}
