.split-heading-with-text {
  padding: var(--margin-big) var(--margin-medium);
}
.split-heading-with-text .split-heading-with-text--wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--margin-medium);
}
.split-heading-with-text .split-heading-with-text--wrapper .heading-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container p {
  margin-top: 0;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container h5 {
  position: relative;
  padding-left: 14px;
  margin-top: 28px;
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.3;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: var(--light-green);
  border-radius: 2px;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container h5:first-child {
  margin-top: 0;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container h5 + p {
  padding-left: 14px;
  font-size: 0.92rem;
  color: rgba(42, 51, 31, 0.75);
  margin-bottom: 0;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container hr {
  border: none;
  border-top: 1px solid rgba(42, 51, 31, 0.12);
  margin: 24px 0;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: var(--margin-mini);
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container ul,
.split-heading-with-text .split-heading-with-text--wrapper .medium-font-size ul,
.split-heading-with-text .split-heading-with-text--wrapper .big-font-size ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container li,
.split-heading-with-text .split-heading-with-text--wrapper .medium-font-size li,
.split-heading-with-text .split-heading-with-text--wrapper .big-font-size li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}
.split-heading-with-text .split-heading-with-text--wrapper .text-container li::before,
.split-heading-with-text .split-heading-with-text--wrapper .medium-font-size li::before,
.split-heading-with-text .split-heading-with-text--wrapper .big-font-size li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 24px;
  height: 24px;
  background-image: url("../../images/graphics/coast-street-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.split-heading-with-text .split-heading-with-text--wrapper {
  /* Font sizing rules */
}
.split-heading-with-text .split-heading-with-text--wrapper .medium-font-size p,
.split-heading-with-text .split-heading-with-text--wrapper .medium-font-size li {
  font-size: var(--medium-font-size);
}
.split-heading-with-text .split-heading-with-text--wrapper .big-font-size p,
.split-heading-with-text .split-heading-with-text--wrapper .big-font-size li {
  font-size: var(--big-font-size);
}
@media (max-width: 768px) {
  .split-heading-with-text {
    padding: var(--margin-small);
  }
  .split-heading-with-text .split-heading-with-text--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--margin-small);
  }
  .split-heading-with-text .split-heading-with-text--wrapper .heading-container,
  .split-heading-with-text .split-heading-with-text--wrapper .text-container {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .split-heading-with-text .split-heading-with-text--wrapper .text-container .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}