.sleep-story {
  overflow: hidden;
  padding: 96px 0;
  background: #e7f6ff;
  border-bottom: 4px solid var(--black);
}

.story-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.story-art {
  min-height: 430px;
  position: relative;
  border: 4px solid var(--black);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.story-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  background: #fff;
  border: 4px solid var(--black);
  clip-path: polygon(50% 0, 61% 19%, 83% 8%, 80% 31%, 100% 42%, 78% 54%, 91% 77%, 65% 72%, 51% 100%, 40% 74%, 13% 88%, 22% 61%, 0 47%, 21% 37%, 8% 15%, 37% 23%);
}

.magnifier {
  display: block;
  position: absolute;
  inset: 12% 10% 7% 4%;
  width: 86%;
  height: 81%;
  object-fit: contain;
  filter: drop-shadow(6px 7px 0 rgba(0, 0, 0, .25));
  transform: rotate(-7deg);
}

.story-copy { max-width: 760px; }
.story-copy h2 { margin-bottom: 25px; font-size: clamp(2.6rem, 5.2vw, 5.1rem); }
.story-copy > p:not(.kicker) { max-width: 690px; margin-bottom: 17px; font-size: 1.08rem; font-weight: 700; line-height: 1.63; }
.story-copy .story-highlight { margin-top: 27px; padding: 16px 18px; color: white; background: var(--black); font-family: Impact, "Arial Black", sans-serif; font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.1; letter-spacing: .5px; text-transform: uppercase; transform: rotate(-1deg); }
.story-copy .story-close { margin-bottom: 0; color: #074e7a; font-weight: 900; }

@media (max-width: 820px) {
  .sleep-story { padding: 72px 0; }
  .story-layout { grid-template-columns: 1fr; gap: 46px; }
  .story-art { min-height: min(92vw, 390px); }
  .story-copy > p:not(.kicker) { font-size: 1rem; }
}