.storytelling-with-cta {
  background-color: var(--brand-color-orange);
  min-height: 740px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.storytelling-with-cta__container {
  color: var(--light-color);
  display: grid;
  justify-content: center;
  padding: 100px 16px 120px 16px;
  grid-gap: 50px;
  gap: 50px;
}
.storytelling-with-cta h2 {
  font-family: 'Inter';
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -2.28px;
  line-height: 48px;
  margin: 0;
}
.storytelling-with-cta h2 strong {
  font-weight: 700;
}

.storytelling-with-cta--text-container{
  position: relative;
  z-index: 1;
}

.storytelling-with-cta__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.storytelling-with-cta__link-text {
  background: transparent;
  border: 1px solid var(--light-color);
  border-radius: 100px;
  opacity: 1;
  color: var(--light-color);
  cursor: pointer;
  font-family: "IBMPlexSans";
  font-size: 18px;
  font-weight: 500;
  left: 0;
  letter-spacing: -0.36px;
  margin: 0;
  padding: 13px 40px 15px;
  position: relative;
}

.storytelling-with-cta__arrow-left,
.storytelling-with-cta__arrow-right {
    display: inline-block;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    aspect-ratio: 1;
    background: var(--light-color) no-repeat center center;
    background-image: url('/themes/custom/grwpo/images/orange-arrow.svg');
    transform: scale(1);
    transition: 0.3s all cubic-bezier(0.61, 1, 0.88, 1);
}
.storytelling-with-cta__arrow-left {
    transform: scale(0);
    width: 0;
    height: 0;
}
.storytelling-with-cta__link:hover .storytelling-with-cta__arrow-right {
    transform: scale(0);
    width: 0;
    height: 0;
}
.storytelling-with-cta__link:hover .storytelling-with-cta__arrow-left {
    transform: scale(1);
    width: 53px;
    height: 53px;
}


@media only screen and (min-width: 768px) {
  .storytelling-with-cta {
    min-height: 780px;
  }
  .storytelling-with-cta__container {
    padding: 140px 80px 190px 80px;
    grid-gap: 60px;
    gap: 60px;
  }
  .storytelling-with-cta h2 {
    font-size: 42px;
    letter-spacing: -2.52px;
    line-height: 52px;
  }
}

@media only screen and (min-width: 1024px) {
  .storytelling-with-cta {
    min-height: 460px;
  }
  .storytelling-with-cta__container {
    grid-auto-flow: column;
    padding: 150px 60px;
    justify-content: space-between;
    grid-gap: 35px;
    gap: 35px;
  }
  .storytelling-with-cta h2 {
    font-size: 36px;
    letter-spacing: -2.16px;
    line-height: 46px;
  }
  .storytelling-with-cta__link {
    height: min-content;
    /* align-items: flex-start; */
    flex: 0 0 auto;
  }
}

@media only screen and (min-width: 1366px) {
  .storytelling-with-cta {
    min-height: 520px;
  }
  .storytelling-with-cta__container {
    padding: 170px 80px;
    grid-gap: 140px;
    gap: 140px;
  }
  .storytelling-with-cta h2 {
    font-size: 42px;
    letter-spacing: -2.52px;
    line-height: 52px;
  }
}

@media only screen and (min-width: 1920px) {
  .storytelling-with-cta {
    min-height: 580px;
  }
  .storytelling-with-cta__container {
    padding: 180px;
    width: 1920px;
    margin: 0 auto;
    grid-gap: 280px;
    gap: 280px;
  }
  .storytelling-with-cta h2 {
    font-size: 52px;
    letter-spacing: -3.12px;
    line-height: 62px;
  }
}
