.hero-stories{
  display: flex;
  align-items: flex-end;
  padding: 60px 20px;
  position: relative;
}
.hero-stories .wrapper{
  display: flex;
  gap: 100px;
  position: relative;
  align-items: flex-end;
  width: 1280px;
}
.hero-stories .back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-stories .back::before{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  backdrop-filter: blur(7px);
}
.hero-stories .back img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-stories .left{
  overflow: hidden;
  width: 500px;
}
.hero-stories .right{
  flex: 1;
}
.hero-stories .right :is(:last-child){
  margin-bottom: 0;
}
.hero-stories .left h1.masked-text {
  clip-path: inset(20px);
  margin: -20px;
  text-align: justify;
  background-position: 20% top;
  background-size: 150%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

@media(max-width: 1080px){
  .hero-stories .left h1{
    font-size: 110px !important;
  }
  .hero-stories .left{
    width: 360px;
  }
  .hero-stories .left h1.masked-text {
    clip-path: inset(15px);
    margin: -15px;
  }
}
@media(max-width: 767px){
 .hero-stories .wrapper{
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .hero-stories .wrapper > div{
    width: unset;
  }
  .hero-stories .left{
    max-width: 80%;
  }
  .hero-stories .left h1 {
  }
  .hero-stories{
    padding: 180px 20px 40px;
    min-height: unset !important;
  }
  