/*
 * Pressroom photo legibility safeguard.
 *
 * Composed Front Page photographs keep their native aspect ratio so image depth
 * can respond to the actual source rather than an old fixed 4:3/16:9 card box.
 * The normal color-newsprint treatment remains authoritative for usable source
 * images. If the browser would enlarge an intrinsically small source, remove the
 * decorative print layer and do not upscale the image beyond native dimensions.
 */
.newspaper-story .news-photo {
  overflow: visible;
}

.newspaper-story .news-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.news-photo.source-limited {
  display:flex;
  flex-direction:column;
  align-items:center;
  background:var(--paper-shadow);
}

.news-photo.source-limited img {
  filter:none !important;
  opacity:1 !important;
  width:auto !important;
  max-width:100%;
  height:auto !important;
  aspect-ratio:auto !important;
  object-fit:contain;
  image-rendering:auto;
  margin:0 auto;
  background:var(--paper-shadow);
}

.news-photo.source-limited::after {
  display:none !important;
}

.news-photo.source-limited figcaption {
  width:100%;
}
