/*
* 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_grid_image_link figure {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  border-radius: 2.5rem;
  overflow: hidden;
}
.sn_grid_image_link figure picture {
  transition: transform 0.35s ease;
}
.sn_grid_image_link figure:hover picture {
  transform: scale3d(1.05, 1.05, 1.05);
}