/* Related DoorWin Projects image layout.
   Matches project.php markup: .related-project-card__images and .related-project-card__img-wrap. */

.related-project-card__images {
  display: flex;
  width: 100%;
  min-height: 0;
  background: #e2e8f0;
  text-decoration: none;
}

.related-project-card__img-wrap {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.related-project-card__img-wrap + .related-project-card__img-wrap {
  border-left: 2px solid #ffffff;
}

.related-project-card__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #eef2f6;
}

/* Fallback for any related project rendered with a single direct image. */
.related-project-card__images > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: #eef2f6;
}
