/* Sporty Hero Reveal Styles */
.sporty-hero-reveal {
    position: relative;
    width: 100%;
    min-height: 60vh;
    overflow: hidden;
    background: transparent;
    cursor: default;
}

/* Background revealed on hover */
.sporty-hero-reveal__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* Diagonal sweep mask - hidden off-screen to the left, keeping constant slope */
    clip-path: polygon(0 0, -30% 0%, 0% 100%, 0 100%);
    transition: clip-path 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1;
}

.sporty-hero-reveal:hover .sporty-hero-reveal__bg {
    /* Reveals fully across the container */
    clip-path: polygon(0 0, 100% 0%, 130% 100%, 0 100%);
}

/* Foreground subject image - always visible, static */
.sporty-hero-reveal__fg {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end; /* usually stands on the bottom */
    justify-content: center;
    pointer-events: none;
}

.sporty-hero-reveal__fg img {
    height: 100%; /* Fill the height of the hero */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
