 /* || Hero / Intro Section */
.hero {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.featured-image {
  border-bottom-right-radius: 120px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-bottom-right-radius: inherit;
  min-height: 475px;
  width: 100%; 
  object-fit: cover;
  object-position: left center;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right:24px;
}

.hero__title {
  padding-top: 0;
  padding-bottom: 16px;
}


.hero__subhead {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  z-index: 3;
  max-width: 460px;
}

.hero__pattern {
  display: none;
}


@media screen and (min-width: 855px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
  }

  .featured-image{
      transform: none;
      width: 50%;
    }

  .featured-image.l1_temp {
    width: 67%;
    transform: translateX(25px);

  }

  .featured-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
    min-height: 460px;
    object-position: left center;
    max-width: 560px;
  }

  .featured-image.l2_temp img {
    max-width: none;
    object-position: center center;
  }

  .hero .hero__pattern {
    display: block;
    position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
    width: 34px;
    height: 167px;
    background-image: url("../assets/pattern.svg");
    background-repeat: no-repeat;
  }

  .hero__intro{
    width:50%;  
  }

 
}


@media screen and (max-width: 1160px) {
  
}

@media screen and (min-width: 1279px) {
  .featured-image {
    transform: none;
  }

  .featured-image.l1_temp img {
    max-width: 670px;
    padding-right: 24px;
  }

}



@media screen and (min-width: 856px) {

  .hero {
      padding: 0 25px;
    }
  
}

@media screen and (min-width: 1200px) {
  .hero {
    padding: 0;
  }
}


@media screen and (max-width: 855px) {
    .featured-image.l2_temp img{
      min-height: 475px;
      width: calc(100% + 50px); 
      object-fit: cover;
      object-position: left center;
    }

     .featured-image {
    padding-right: 20px;
  }

      .hero__intro {
      padding-left:30px;
    }

}


@media screen and (max-width: 550px) {

}











