/* MŠ MSVN – úvodní modální okno. Prefix .msvn-modal, ať se netluče se šablonou. */
.msvn-modal{position:fixed;inset:0;z-index:100000;display:flex;align-items:center;justify-content:center;padding:20px;box-sizing:border-box}
.msvn-modal *{box-sizing:border-box}
.msvn-modal[hidden]{display:none}

.msvn-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(2px);cursor:pointer}

.msvn-modal__box{position:relative;z-index:1;max-width:min(92vw,560px);max-height:90vh;animation:msvn-modal-in .25s ease}
.msvn-modal__img{display:block;width:100%;height:auto;max-height:90vh;object-fit:contain;border-radius:10px;box-shadow:0 18px 50px rgba(0,0,0,.4);background:#fff}

.msvn-modal__close{position:absolute;top:-14px;right:-14px;width:40px;height:40px;border:none;border-radius:50%;
  background:#fff;color:#222;font-size:26px;line-height:38px;text-align:center;cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.3);padding:0}
.msvn-modal__close:hover{background:#f1f1f1}
.msvn-modal__close:focus{outline:3px solid #1f6feb;outline-offset:2px}

@keyframes msvn-modal-in{from{opacity:0;transform:scale(.96)}to{opacity:1;transform:scale(1)}}

@media(max-width:520px){
  .msvn-modal{padding:16px}
  .msvn-modal__close{top:-10px;right:-10px;width:36px;height:36px;font-size:22px;line-height:34px}
}
