/* Preserve the native 512 × 656 portrait framing so faces are never cropped away. */
.choice-photos {
  grid-template-columns: repeat(2, minmax(0, 86px));
  justify-content: center;
}

.choice-photos img {
  width: 86px;
  height: 110px;
  aspect-ratio: 512 / 656;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.result-step .showcase-video {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.reel-strip {
  align-items: start;
}

.reel-strip .showcase-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 512 / 656;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.final-card img {
  object-position: center 24%;
}

@media (max-width: 780px) {
  .choice-photos {
    grid-template-columns: repeat(2, minmax(0, 104px));
  }
  .choice-photos img {
    width: 104px;
    height: auto;
  }
  .reel-strip .showcase-thumb img {
    height: auto;
  }
}
