.component__text-image{
  margin:0 auto;
  max-width:100%;
  padding:0;
}
@media screen and (min-width:576px){
  .component__text-image{
    max-width:var(--grid-container-max-width);
  }
}
@media screen and (min-width:768px){
  .component__text-image{
    font-size:1rem;
  }
}

.component__text-image ol,.component__text-image ul{
  padding-left:1.8rem;
}
.component__text-image ol{
  counter-reset:numbered-list;
}

.component__text-image ol li{
  counter-increment:numbered-list;
  list-style-type:none;
  margin-bottom:.375rem;
  position:relative;
}
.component__text-image ol li:before{
  color:#15a8f1;
  content:counter(numbered-list, decimal-leading-zero) ".";
  font-weight:var(--font-medium);
  left:-30px;
  position:absolute;
  text-align:right;
  top:2px;
  width:22px;
}
.component__text-image ul li{
  list-style-type:none;
  margin-bottom:.375rem;
  padding-left:.2rem;
  position:relative;
}
.component__text-image ul li:before{
  background-image:url(../assets/images/check.svg);
  content:"";
  height:22px;
  left:-30px;
  position:absolute;
  top:2px;
  width:22px;
}

.component__text-image li::marker{
  display:inline-block;
  vertical-align:middle;
}

.component__text-image-title{
  margin:0;
  transition:margin-bottom .25s ease,opacity .25s ease;
}

.component__text-image-description{
  font-size:1.2rem;
}
@media screen and (min-width:768px){
  .component__text-image-description{
    font-size:1.5rem;
  }
}

.component__text-image img,.component__text-image-one img{
  border-radius:.625rem;
}
.component__text-image img:last-child,.component__text-image-one img:last-child{
  margin-bottom:0;
}

.component__text-image-one{
  grid-area:text-image-one;
  height:100%;
}
@media screen and (min-width:1200px){
  .component__text-image-one{
    margin-bottom:0;
  }
}
.component__text-image-one h1,.component__text-image-one h2,.component__text-image-one h3,.component__text-image-one h4,.component__text-image-one h5,.component__text-image-one h6{
  margin-top:0;
}

.component__text-image-two{
  grid-area:text-image-two;
}
.component__text-image-two h1,.component__text-image-two h2,.component__text-image-two h3,.component__text-image-two h4,.component__text-image-two h5,.component__text-image-two h6{
  margin-top:0;
}

.component__text-image-colums{
  align-items:center;
  display:grid;
  gap:24px;
  grid-template-areas:"text-image-one" "text-image-two";
  grid-template-columns:1fr;
}
@media screen and (min-width:1200px){
  .component__text-image-colums{
    grid-template-areas:"text-image-one text-image-two";
    grid-template-columns:1fr 1fr;
  }
}

.component__text-image-mobile_bottom{
  grid-template-areas:"text-image-two" "text-image-one";
}

.component__text-image_left.img{
  height:100%;
}
@media screen and (min-width:1200px){
  .component__text-image_left.component__text-image_left_30{
    grid-template-columns:.5fr 1fr;
  }
  .component__text-image_left.component__text-image_left_70{
    grid-template-columns:1fr .7fr;
  }
}

.component__text-image_right.img{
  height:100%;
}
@media screen and (min-width:1200px){
  .component__text-image_right{
    grid-template-areas:"text-image-two text-image-one";
    grid-template-columns:1fr 1fr;
  }
  .component__text-image_right.component__text-image_right_30{
    grid-template-columns:1fr .5fr;
  }
  .component__text-image_right.component__text-image_right_70{
    grid-template-columns:.7fr 1fr;
  }
}

.component__text-image-heading{
  display:flex;
  justify-content:space-between;
  margin-bottom:var(--spacing-lg);
  transition:background-color .25s ease;
}

.component__text-image-heading-arrow{
  fill:none;
  stroke-width:2;
  cursor:pointer;
  margin:8px;
  opacity:1;
  transform:scale(1.8);
  transition:transform .25s ease,opacity .25s ease;
}

.component__text-image-heading-arrow.expanded{
  transform:rotate(180deg) scale(1.8);
}

.component__text-image-title_disable{
  cursor:pointer;
  display:none;
  line-height:1.2rem;
  margin-bottom:-1.2rem;
  opacity:0;
}

.component__text-image-nav.expanded div:not(.active){
  display:block;
  opacity:.4;
}

.component__text-image-nav.expanded .component__text-image-title{
  margin-bottom:var(--spacing-lg);
}

.component__text-image-image{
  margin-bottom:2rem;
  text-align:center;
}

.component__text-image-link .media-image:hover{
  box-shadow:0 0 2px 1px #15a8f1;
  transition:box-shadow .2s ease-in-out;
}