/*
* 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_quote blockquote {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0;
  color: #fff;
  padding: 2.8125rem;
  min-height: 34.0625rem;
  background: linear-gradient(130deg, #073A4C 30%, #315A69 90%);
  max-width: 160rem;
  margin: 0 auto;
}
.sn_quote blockquote:has(img):after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sn_quote blockquote.__narrow {
  min-height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 62em) {
  .sn_quote blockquote.__narrow {
    padding: 7.5rem 2.8125rem;
  }
}
.sn_quote blockquote cite {
  letter-spacing: 1.29%;
}
.sn_quote blockquote cite {
  font-size: 1.0625rem;
}
.sn_quote blockquote cite {
  line-height: 1.88;
}
.sn_quote__content {
  position: relative;
  z-index: 1;
  max-width: 34.0625rem;
}
@media only screen and (min-width: 62em) {
  .sn_quote__content {
    max-width: 54.6875rem;
  }
}