.component-split-feature {
  margin: 64px 0;
}
@media only screen and (min-width: 768px) {
  .component-split-feature {
    margin: 75px 0;
  }
}
.component-split-feature h2 {
  margin-bottom: 24px;
}
.component-split-feature .row {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.component-split-feature .row::before,
.component-split-feature .row:after {
  content: none;
}
@media only screen and (min-width: 768px) {
  .component-split-feature .row {
    align-items: center;
    flex-direction: row;
    gap: 32px;
  }
}
.component-split-feature .media-wrap img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  display: block;
}
.component-split-feature .sf-ctas {
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .component-split-feature .sf-ctas {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.component-split-feature .sf-ctas a:not(.btn) {
  color: #0071CE;
  font-weight: 600;
  text-decoration: none;
}
.component-split-feature .sf-ctas a:not(.btn):hover {
  text-decoration: underline;
}
.component-split-feature .sf-ctas a:not(.btn):hover::after {
  padding-left: 10px;
}
.component-split-feature .sf-ctas a:not(.btn)::after {
  content: url(../../../img/chevron-right.svg);
  display: inline-block;
  line-height: 1em;
  width: 6px;
  height: auto;
  padding: 6px;
  transition: padding 200ms;
}
@media only screen and (min-width: 768px) {
  .component-split-feature.imgleft .row {
    flex-direction: row-reverse;
  }
}
.component-split-feature.img-aspect-ratio-1x1 img,
.component-split-feature.img-aspect-ratio-4x3 img,
.component-split-feature.img-aspect-ratio-16x9 img {
  object-fit: cover;
}
.component-split-feature.img-aspect-ratio-1x1 img {
  aspect-ratio: 1 / 1;
}
.component-split-feature.img-aspect-ratio-4x3 img {
  aspect-ratio: 4 / 3;
}
.component-split-feature.img-aspect-ratio-16x9 img {
  aspect-ratio: 16 / 9;
}
