.story-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: #00412f;
  padding: 144px 160px;
}

.story-hero__container {
  max-width: 1120px;
  margin: 0 auto;
}

.story-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 128px;
  align-items: flex-start;
}

.story-hero__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.story-hero__label {
  display: block;
  color: #00B993;
  font-size: 14px;
  line-height:28px;
  font-family: 'avenir_next_worlddemi', 'Verdana';
  letter-spacing: 0;
  margin: 0;
}

.story-hero__heading {
  font-size: 48px;
  font-family: 'schibsted_grotesk_demi', 'Verdana';
  font-weight: normal;
  line-height: 56px;
  color: #ffffff;
  margin: 0;
}

.story-hero__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-hero__text {
  font-size: 16px;
  font-family: 'avenir_next_worldmedium', 'Verdana';
  font-weight: normal;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
  .story-hero {
    padding: 100px 80px;
  }

  .story-hero__content {
    gap: 80px;
  }

  .story-hero__heading {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .story-hero {
    padding: 80px 24px;
  }

  .story-hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-hero__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .story-hero__heading br{
    display:none;
  }
  .story-hero__right{
    gap: 16px;
  }
  
}

@media (max-width: 480px) {

  .story-hero__heading {
    font-size: 32px;
    line-height: 40px;
  }

  .story-hero__content {
    gap: 24px;
  }
}
