/* Looking At -------------------------------------------------------------
   Story-specific fixed scroll edit.

   Looking Around allows one view to bleed into the memory of the next.
   Looking At is being tested as a more punctuated page: attention repeatedly
   settles on a thing, releases, and is captured again.

   The generic gallery stylesheet still supplies the site header, typography,
   lightbox, return link, colours, and final page spacing.
--------------------------------------------------------------------------- */

.story10-opening {
  padding-bottom: clamp(58px, 7vw, 92px);
}

.story10-field {
  display: block;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.story10-field .story10-image {
  display: block;
  width: var(--w, 60%);
  margin: 0 auto var(--after, 110px);
  padding: 0;
}

.story10-field .story10-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

.story10-field .story10-image:focus-visible {
  outline-offset: 8px;
}

/* Keep portrait orientation from creating accidental monumentality. */
@media (min-width: 701px) {
  .story10-field .story10-image--portrait {
    width: min(var(--w, 44%), 52vh);
  }
}

@media (max-width: 700px) {
  .story10-opening {
    padding-bottom: 48px;
  }

  .story10-field .story10-image {
    width: var(--wm, 86%);
    margin-left: auto;
    margin-right: auto;
    /* Keep the stop-start rhythm without letting desktop pauses become empty
       phone screens. */
    margin-bottom: min(var(--after, 84px), 25vw);
  }
}
