.ss-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(11,27,61,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:100;
}
.ss-modal-overlay.open{display:flex;}
.ss-modal{
  position:relative;
  max-width:min(720px,100%);
  max-height:90vh;
  background:#fff;
  border-radius:20px;
  padding:16px;
  box-shadow:0 20px 50px -16px rgba(0,0,0,.4);
}
.ss-modal img{
  display:block;
  max-width:100%;
  max-height:calc(90vh - 32px);
  border-radius:12px;
  object-fit:contain;
}
.ss-modal-close{
  position:absolute;
  top:-14px;
  right:-14px;
  width:34px;
  height:34px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 4px 12px -2px rgba(0,0,0,.3);
  color:var(--blue-dark,#0f3d28);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ss-modal-close svg{width:18px;height:18px;}
