/* Oversized hand cursor over marketing showcases (fine pointer only). */

.showcase-hand-cursor {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 4.25rem;
    height: auto;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-9999px, -9999px, 0);
    will-change: transform, opacity;
    filter: drop-shadow(0 4px 8px rgba(20, 24, 28, 0.22));
    transition: opacity 0.18s ease;
}

.showcase-hand-cursor.is-visible {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .universe-bd-page .universe-bd-showcase__visual,
    .universe-bd-page .universe-bd-showcase__visual * {
        cursor: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-hand-cursor {
        display: none !important;
    }

    .universe-bd-page .universe-bd-showcase__visual,
    .universe-bd-page .universe-bd-showcase__visual * {
        cursor: auto !important;
    }
}
