/**
 * Full Image Block Styles
 */

.block-full-image {
   position: relative;
   width: 100%;
   height: 100vh;
   overflow: hidden;
}

.block-full-image__figure {
   width: 100%;
   height: 100%;
}

.block-full-image__image {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

@media screen and (max-width: 1024px) {
   .block-full-image {
      position: relative;
      height: auto;
   }
}
