/* Nexgen site customisations
   ------------------------------------------------------------------
   Loaded by shopscape-child/functions.php at priority 999 so it lands
   after the parent theme's stylesheets. */


/* Uniform project card images.

   The parent theme registers its grid image size as
   add_image_size('boldthemes_grid', 540) — width only, no height and no hard
   crop — so every thumbnail keeps its source aspect ratio. The media library
   holds two: 540x304 on 14 projects and 540x322 on 17, which is why the cards
   do not line up. This pins every card to a single 16:9 box and crops from the
   centre, covering existing projects and future uploads alike. */

.btMediaBox .bpbItem > a {
	display: block;
}

.btMediaBox .bpbItem > a > img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
}
