.section-story {
  margin-top: 160px;
  flex-direction: column;
  /* height: calc(var(--aspect-base) * 785); */
  align-items: flex-start;
  position: relative;
}
.story-content {
  width: 100%;
  height: clamp(528px, calc(var(--aspect-base) * 640), 640px);
  margin-top: clamp(40px, calc(var(--aspect-base) * 60), 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-image: url('/images/story_bg.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.story-content p {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, .9);
  width: 100%;
  max-width: 1200px;
}
.story-overview {
  font-size: clamp(18px, calc(var(--aspect-base) * 32), 32px);
  font-weight: bold;
  margin-bottom: clamp(27px, calc(var(--aspect-base) * 38), 38px);
}
.story-description {
  font-size: clamp(14px, calc(var(--aspect-base) * 18), 18px);
  line-height: clamp(21px, calc(var(--aspect-base) * 27), 27px);
}

@media only screen and (max-width: 960px) {
  .section-story {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 480px) {
  .story-content {
    display: inline-flex;
    box-sizing: border-box;
    padding: 0 16px;
  }
  .story-content p {
    width: 100%;
    margin-left: 16px;
    margin-right: 16px;
  }
}