/* Elementor's own base stylesheet ships `.elementor img{height:auto;max-width:100%}`
   (specificity 0,1,1 — one class + one tag), which beats every single-class
   `.cw-img-0X{height:...}` rule in create-want.css (specificity 0,1,0) regardless
   of source order, silently collapsing these images to their natural aspect
   ratio instead of the intended viewport-relative height. Re-declared here at
   matching tag+class specificity (0,1,1), loaded after both stylesheets, so
   these win the tie via source order. Values and breakpoint copied verbatim
   from create-want.css — keep in sync if that file's image heights change. */
img.cw-img-01 { height: 42vh; }
img.cw-img-02 { height: 46vh; }
img.cw-img-03 { height: 14rem; }
img.cw-img-04 { height: 60vh; }
img.cw-img-06 { height: 52vh; }
img.cw-img-07, img.cw-img-08 { height: 40vh; }

@media (width >= 48rem) {
	img.cw-img-01 { height: 64vh; }
	img.cw-img-03 { height: 18rem; }
	img.cw-img-04 { height: 76vh; }
	img.cw-img-06 { height: 78vh; }
	img.cw-img-07, img.cw-img-08 { height: 60vh; }
}
