.gsap-hero-container {
    overflow: hidden; 
    position: relative;
    width: 100%;
    
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    transform: translateZ(0); 
}

@media (max-width: 767px) {
    .gsap-hero-container {
        height: var(--mobile-height, 45vh) !important;
    }
}

.gsap-hero-image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    position: absolute;
    
    will-change: transform;
}