.story-gallery {
  min-height: 480px;
  background: transparent;
  padding: 1.5rem;
  isolation: isolate;
}

.story-gallery::after {
  content: none;
}

.story-photo {
  position: absolute;
  display: block;
  width: 66%;
  height: 64%;
  object-fit: cover;
  border: 8px solid var(--paper);
  box-shadow: 0 18px 45px rgba(23, 23, 23, .25);
  background: var(--paper);
}

.story-photo-one {
  top: 3%;
  left: 4%;
  z-index: 1;
  transform: rotate(-5deg);
}

.story-photo-two {
  top: 16%;
  right: 1%;
  z-index: 2;
  transform: rotate(4deg);
}

.story-photo-three {
  bottom: 3%;
  left: 11%;
  z-index: 3;
  transform: rotate(-1deg);
}

.story-gallery .story-stamp {
  top: auto;
  bottom: 8%;
  right: 3%;
  left: auto;
  z-index: 4;
  padding: .8rem;
  background: var(--yellow);
  font-size: 1.1rem;
}

.story-gallery > span {
  position: absolute;
  left: 1.5rem;
  bottom: 1.2rem;
  z-index: 5;
  padding: .45rem .65rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .58rem;
  letter-spacing: .1em;
}

@media (max-width: 800px) {
  .story-gallery {
    min-height: 390px;
    padding: 1rem;
  }

  .story-photo {
    width: 76%;
    height: 58%;
    border-width: 6px;
  }

  .story-photo-one {
    top: 3%;
    left: 1%;
  }

  .story-photo-two {
    top: 16%;
    right: 0;
  }

  .story-photo-three {
    bottom: 4%;
    left: 5%;
  }

  .story-gallery .story-stamp {
    bottom: 10%;
    right: 0;
    font-size: .85rem;
  }

  .story-gallery > span {
    left: 1rem;
    bottom: .7rem;
    font-size: .48rem;
  }
}
