  /* Lightbox */
  .lightbox[hidden] {
    display: none !important;
  }


  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
  }

  .lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.9);
  }

  .lightbox__panel {
    position: relative;
    z-index: 2;
    width: min(94vw, 1200px);
    height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }

  .lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }
  
.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  opacity: 1;

}

.lightbox__img {
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.lightbox.is-open .lightbox__backdrop {
  opacity: 1;
}

.lightbox.is-open .lightbox__img {
  opacity: 1;
}

  @media (max-width: 700px) {
    .museum-block__figure { 
	  /*
	  float: none;
      width: 100%;
  
      margin: 0 0 1rem 0;
	  */
    }
  .museum-block::after {
	margin-bottom:auto;
  }	  
.museum-block__figure--horizontal {
      width: 100%;
      margin: 0 0 1rem 0;
}
.museum-block__figure--vertical {
  width: min(30%, 100px);
  margin: .3rem 2.0rem 0.25rem 0;
}

  }
