/*
* 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_card_banner {
  overflow: hidden;
  position: relative;
  height: 100%;
  border-radius: 0;
}
.sn_card_banner__link {
  border-radius: 0;
  outline-offset: -0.125rem;
}
.sn_card_banner__link.__abs_link {
  z-index: 3;
}
.sn_card_banner__link:focus-visible {
  outline: 0.125rem solid #000;
}
.sn_card_banner__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.sn_card_banner__bg__in {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
}
.sn_card_banner__bg__in::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: var(--card-background-color, transparent);
  opacity: 0.66;
}
.sn_card_banner__bg__in::after {
  content: "";
  position: absolute;
  top: 66%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, var(--card-background-color, transparent) 100%);
}
.sn_card_banner__in {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media only screen and (min-width: 62em) {
  .sn_card_banner__in {
    gap: 3rem;
  }
}
.sn_card_banner__logo {
  width: 8.125rem;
  max-width: 100%;
}
.sn_card_banner__logo img {
  width: 100%;
  height: auto;
}
.sn_card_banner__image {
  width: 20.625rem;
  max-width: 100%;
}
.sn_card_banner__image img {
  transition: transform 0.35s ease;
  width: 100%;
  height: auto;
}
.sn_card_banner:hover .sn_card_banner__image img {
  transform: scale3d(1.05, 1.05, 1.05);
}