/*
Theme Name: Divi Child
Template: Divi
*/

/* Vestnor Teknikk — perf-issue-2
   Reserve the team-photo box so lazy-loading cannot shift the layout.
   The container collapses to 0px without an image; all employee photos
   are 800x1199 (2:3). object-fit:cover replaces the default `fill` so an
   odd-sized photo crops instead of stretching. */
.et_pb_team_member_image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: cover;
}