.welcome-our-story-wrapper {
  position: relative;
  grid-area: content;
  margin-left: auto;
  margin-right: auto;
}

.welcome-our-story {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
}

.welcome-our-story .contentBox {
  max-height: 300px;
}

.welcome-our-story .contentBox__title--link {
  display: block;
  position: absolute;
  inset: 0;
}

.welcome-our-story .contentBox__bg,
.welcome-our-story .contentBox__title--link {
  width: min(275px, 50vw);
  aspect-ratio: 275 / 115;
  min-width: 100px;
}

.welcome-our-story .contentBox__bg {
  background-repeat: no-repeat;
  animation-name: imagelink-slide-in;
  animation-duration: 1.8s;
}

@keyframes imagelink-slide-in {
  from {
    margin-left: 50px;
    opacity: 0;
  }
  to {
    margin-left: 0px;
    opacity: 1;
  }
}
