/* Styles pour la modal de galerie de réalisations */

/* Styles pour desktop */
.modal-image-wrapper {
  width: 90vw;
  max-width: 1400px;
  height: 85vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-inner {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styles pour mobile */
@media (max-width: 768px) {
  .modal-image-wrapper {
    width: 90vw;
    max-width: 90vw;
    height: 70vh;
    max-height: 600px;
  }
  
  .modal-image-inner {
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 600px;
  }
}

