/* FlowMax Image Reveal - Zoom In Reveal */

/* Ensure images maintain aspect ratio and don't break layout */
.fm-image-reveal-zoom-in img {
	display: block;
	max-width: 100%;
	height: auto;
	transform-origin: center center;
	will-change: transform, opacity;
}

/* Preserve border-radius if set */
.fm-image-reveal-zoom-in img[style*="border-radius"] {
	border-radius: inherit;
}

