/* ==============================
   MODALE – GLOBAL
============================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.modal-panel {
  position: relative;
  width: min(900px, calc(100% - 32px));
  margin: 6vh auto;
  background: #ffffff;
  border-radius: 18px;
  max-height: 88vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
}

@media (max-width: 640px){
  .modal-panel{
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
  }
}


