.hero .detail-hero-media {
    background: #050606;
    overflow: hidden;
    animation: none;
}

.hero-static-media {
    position: absolute;
    inset: -2%;
    display: block;
    background-position: 50% 68%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
    transform-origin: 62% 68%;
    will-change: transform;
    animation: hero-static-motion 30s ease-in-out infinite;
}

@keyframes hero-static-motion {
    0%, 27% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }
    49% {
        transform: scale(1.18) translate3d(-1.5%, -0.8%, 0);
    }
    50%, 77% {
        transform: scale(1.03) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.17) translate3d(-1.2%, -0.6%, 0);
    }
}

@media (max-width: 800px) {
    .hero-static-media {
        inset: -3%;
        background-position: 62% 68%;
        transform-origin: 68% 68%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-static-media {
        inset: 0;
        animation: none;
        transform: none;
    }
}
