/* bpd-two/columns-2up (Contact Us "Office locations" so far). The shared .bpd-photo-frame class
   (photo-frame.css) sets height:auto, which is correct for images whose own aspect ratio should
   drive the layout, but here the two source photos have different natural ratios and need to crop
   to the same visual card height (Figma: consistent card height across the row). core/group
   doesn't support dimensions.aspectRatio as a hand-authored block style (fails re-serialization —
   see PROGRESS.md's Our Work archive bug writeup), so the fixed 614:428 crop lives here as a CSS
   modifier class instead, layered on top of .bpd-photo-frame's existing radius/clip. */
.bpd-office-card-photo img {
	aspect-ratio: 614 / 428;
	object-fit: cover;
}
