.text--left .text__wrapper {
  padding : inherit;
}


.text--desktop {
  display: none;
}

.layout--twocol {
  display: grid;
  grid-template-areas: "a"
                       "b";

}



@media all and (min-width: 900px) {
  .layout--twocol {
    grid-template-areas: "a b";
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* .text__wrapper .text__text_center {
    display: flex;
    flex-direction: column;
    padding: 80px 500px 0px;
    align-items: flex-start;
  } */

  .text--mobile {
    display: none;
  }
  .text--desktop {
    display: initial;
  }
}



.layout--twocol .layout__region--first {
  grid-area: a;
}

.layout--twocol .layout__region--second {
  grid-area: b;
}

.text--orange {
  color : var(--color-primary--1);
}