.story {
  grid-template-columns: .2fr minmax(0, 1fr);
  max-width: 1200px;
}

.story-photo {
  width: min(100%, 160px);
  margin-top: .5rem;
}

.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0 !important;
}

@media (max-width: 820px) {
  .story {
    grid-template-columns: 1fr;
  }

  .story-photo {
    width: min(48vw, 140px);
  }
}
