/* STLTYPE hero right image rotator */
.banner-panel-right.hero-rotator {
    background: var(--glass-bg);
}
.banner-panel-right.hero-rotator .hero-rotator-image {
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 780ms ease, transform 1600ms ease;
    will-change: opacity, transform;
}
.banner-panel-right.hero-rotator .hero-rotator-image.is-active {
    opacity: 0.68;
    transform: scale(1);
}
.banner-panel-right.hero-rotator:hover .hero-rotator-image.is-active {
    opacity: 0.84;
    transform: scale(1.02);
}
.banner-panel-right.hero-rotator .hero-rotator-image:not(.is-active) {
    pointer-events: none;
}
