/*
* 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 figure {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 40.9375rem;
  max-width: 160rem;
  margin: 0 auto;
}
.sn_image figure.__narrow {
  aspect-ratio: 980/680;
  width: 100%;
  min-height: auto;
}
.sn_image figure.__contain {
  aspect-ratio: auto;
  min-height: auto;
}
.sn_image figure.__contain img {
  width: 100%;
  height: auto;
}