/**
 * Līmenī Elementor widgets, frontend fixes.
 *
 * Elementor's frontend.css sets `.elementor img{height:auto;max-width:100%}`
 * (specificity 0,1,1), which overrides Tailwind's single-class `.h-full`
 * (0,1,0) and collapses every object-cover fill image to its natural size.
 * Restore the intended fill behaviour for our images.
 */
.elementor img.h-full {
	height: 100% !important;
}
.elementor img.w-full {
	width: 100% !important;
}
.elementor .object-cover {
	object-fit: cover !important;
}
.elementor .object-contain {
	object-fit: contain !important;
}
