/* Lightbox styles pour les affiches d'évènements */
.event-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.event-lightbox[aria-hidden="false"] {
  display: flex;
}

.event-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.event-lightbox-img {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.event-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.event-lightbox-close:hover {
  background: rgba(255,255,255,0.35);
}

