/*
* 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_boxed_content figure picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sn_boxed_content figure picture picture, .sn_boxed_content figure picture img {
  width: 100%;
  height: 100%;
}
.sn_boxed_content figure picture img {
  -o-object-fit: cover;
     object-fit: cover;
}

.sn_boxed_content__box {
  border-radius: 0.5rem;
}
.sn_boxed_content figure {
  position: relative;
  height: 100%;
}
@media only screen and (min-width: 0em) and (max-width: 61.99em) {
  .sn_boxed_content figure {
    aspect-ratio: 366/352;
  }
}
.sn_boxed_content__content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 62em) {
  .sn_boxed_content__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    min-height: 27.5rem;
  }
}
.sn_boxed_content__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.sn_boxed_content__ctas__i {
  display: block;
  max-width: 9.25rem;
  transition: all 0.35s ease;
}
.sn_boxed_content__ctas__i:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}