/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_image_full.__hero picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sn_image_full.__hero picture picture, .sn_image_full.__hero picture img {
  width: 100%;
  height: 100%;
}
.sn_image_full.__hero picture img {
  -o-object-fit: cover;
     object-fit: cover;
}

.sn_image_full.__hero {
  height: 21.875rem;
  position: relative;
}
@media only screen and (min-width: 62em) {
  .sn_image_full.__hero {
    height: 28.125rem;
  }
}