/* TAGS Awards 2026 - Sticky Parallax Hero Banner */

.tags-hero {
    position: sticky;
    top: var(--nav-h-desktop, 84px);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 82vh;
    background: #ffffff;
}

.tags-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82vh;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transform: scale(1.025) translate3d(0, 0, 0);
    transition: opacity 0.4s ease;
    will-change: transform;
}

.tags-hero.is-visible .tags-hero__img {
    opacity: 1;
}

.tags-hero.has-pointer-tilt .tags-hero__img {
    transition: opacity 0.4s ease, transform 0.15s linear;
}

@media (max-width: 991px) {
    .tags-hero {
        top: var(--nav-h-mobile, 64px);
    }
}

@media (max-width: 767px) {
    .tags-hero {
        top: var(--nav-h-mobile, 64px);
        max-height: 46vh;
    }

    .tags-hero__img {
        max-height: 46vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tags-hero {
        position: static !important;
    }
    
    .tags-hero__img {
        transition: none;
        transform: none;
    }
}
