/* MuKairos fixed hero stage - 20260515 */

.hero-stage {
    height: clamp(410px, 44vw, 600px) !important;
    min-height: 410px !important;
    padding: 0 !important;
}

.hero-stage > picture {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-stage > picture .hero-stage-media,
.hero-stage .hero-stage-media {
    display: block;
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-stage .hero-stage-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.26) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(4, 4, 7, 0.82) 100%) !important;
}

.hero-stage .hero-stage-inner {
    min-height: 100% !important;
    max-width: min(1240px, calc(100% - 28px));
    justify-content: flex-start;
    align-items: stretch;
}

.hero-stage .hero-stage-actions {
    align-self: flex-end;
}

.hero-stage .hero-stage-brand {
    display: none !important;
}

@media (max-width: 760px) {
    .hero-stage {
        height: 610px !important;
        min-height: 610px !important;
        padding: 0 !important;
    }

    .hero-stage .hero-stage-media {
        object-position: center top !important;
    }

    .hero-stage .hero-stage-actions {
        width: 100%;
        justify-content: center;
    }
}