.angie-hover-scroll-image-wrapper {
	display: block;
	width: 100%;
	min-height: 400px; /* Fallback min-height */
	overflow: hidden;
	position: relative;
    box-sizing: border-box;
}

.angie-hover-scroll-image-inner {
	position: absolute; /* Changed to absolute to fill wrapper */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	transition-property: background-position;
	transition-timing-function: ease-in-out;
}

.angie-hover-scroll-image-wrapper:hover .angie-hover-scroll-image-inner {
	background-position: bottom center;
}