.text-illustration .text-illustration__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 32px;
  grid-template-rows: auto;
}
@media only screen and (max-width: 992px) {
  .text-illustration .text-illustration__grid {
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 16px;
  }
}
.text-illustration .text-illustration__grid .text-illustration__image {
  min-height: 450px;
  text-align: center;
  position: relative;
  border-radius: 25px;
  grid-column: span 6;
}
@media only screen and (max-width: 992px) {
  .text-illustration .text-illustration__grid .text-illustration__image {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 768px) {
  .text-illustration .text-illustration__grid .text-illustration__image {
    min-height: auto;
    grid-column: span 6;
  }
}
.text-illustration .text-illustration__grid .text-illustration__image img {
  max-width: 420px;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .text-illustration .text-illustration__grid .text-illustration__image img {
    max-width: 100%;
    position: relative;
    left: initial;
    bottom: initial;
    transform: initial;
    padding: 30px 0 0 0;
  }
}
.text-illustration .text-illustration__grid .text-illustration__content {
  position: relative;
  grid-column: span 6;
}
@media only screen and (max-width: 992px) {
  .text-illustration .text-illustration__grid .text-illustration__content {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 768px) {
  .text-illustration .text-illustration__grid .text-illustration__content {
    grid-column: span 6;
  }
}
.text-illustration .text-illustration__grid .text-illustration__content .text-illustration__text {
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1400px) {
  .text-illustration .text-illustration__grid .text-illustration__content .text-illustration__text {
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .text-illustration .text-illustration__grid .text-illustration__content .text-illustration__text {
    position: relative;
    top: initial;
    left: initial;
    transform: initial;
  }
}

.theme.theme--white .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}
.theme.theme--almost-white .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}
.theme.theme--primary .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}
.theme.theme--primary-85 .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}
.theme.theme--secondary .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}
.theme.theme--secondary-70 .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}
.theme.theme--secondary-85 .text-illustration .text-illustration__image {
  background-color: #ffffff;
}
.theme.theme--signal .text-illustration .text-illustration__image {
  background-color: color-mix(in oklab, var(--secondary-color) 15%, #ffffff);
}