/* Physical-iPhone follow-up: let the existing photo establish its grid height.
   Keep desktop composition and the original photo/alt/caption unchanged. */
@media (max-width: 600px) {
  .case-photo {
    aspect-ratio: auto;
    align-self: start;
  }

  .case-photo img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
