/*
* 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_text h1, .sn_text h2, .sn_text h3, .sn_text h4, .sn_text h5, .sn_text h6 {
  color: #073A4C;
  font-weight: 800;
}
.sn_text .__split {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (min-width: 87.5em) {
  .sn_text .__split {
    flex-direction: row;
  }
}
.sn_text .__split > span {
  flex: 1 1 0;
}