
.two-column-content-block {
  position: relative;
  margin: 0px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1242px) {
  .two-column-content-block {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.two-column-content-block .section__shell {
  position: relative;
  max-width: var(--width--section-max);
  margin: 0 auto;
}
.two-column-content-block .section__shell.padded {
  max-width: var(--width--section-min);
}
.two-column-content-block .section__heading h1,
.two-column-content-block .section__heading h2,
.two-column-content-block .section__heading h3,
.two-column-content-block .section__heading h4 {
  color: var(--color--primary);
  font-family: var(--font-family);
  font-variation-settings: "slnt" 0, "wght" 400;
  font-size: 34px;
  line-height: 32px;
  margin-bottom: 1.5rem;
}
.two-column-content-block .section__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px !important;
}
@media (min-width: 56.25em) {
  .two-column-content-block .section__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem
  }
}
.two-column-content-block .section__content .left-content-wrapper,
.two-column-content-block .section__content .right-content-wrapper {
  position: relative;
  width: 100%;
}
@media (min-width: 56.25em) {
  .two-column-content-block .section__content .left-content-wrapper,
  .two-column-content-block .section__content .right-content-wrapper {
    width: calc(50% - 1rem);
  }
}
.two-column-content-block .section__content .left-content-wrapper .section__paragraph p,
.two-column-content-block .section__content .right-content-wrapper .section__paragraph p {
  color: var(--color--dark-gray);
  font-family: var(--font-family);
  font-variation-settings: "slnt" 0, "wght" 400;
  font-size: 15px !important;
  line-height: 23px;
  text-align: left;
}


/** Mobile Design Overrides **/
@media (max-width: 34.375em) {
  .two-column-content-block .section__heading h1,
  .two-column-content-block .section__heading h2,
  .two-column-content-block .section__heading h3,
  .two-column-content-block .section__heading h4 {
    font-size: 22px !important;
    line-height: 1.5;
  }
  .two-column-content-block .section__content .left-content-wrapper .section__paragraph p,
  .two-column-content-block .section__content .right-content-wrapper .section__paragraph p {
    font-size: 12px !important;
    line-height: 1.5;
  }
}