/* MuKairos official artwork layer - 20260515 */

.hero-stage > picture {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-stage > picture .hero-stage-media {
    display: block;
}

.page-home .hero-stage {
    height: clamp(410px, 44vw, 600px) !important;
    min-height: 410px !important;
    padding: 0 !important;
}

.page-home .hero-stage-media {
    object-position: center center !important;
}

.page-home .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%);
}

.page-home .hero-stage-inner {
    min-height: 100% !important;
    max-width: min(1240px, calc(100% - 28px));
    justify-content: flex-start;
    align-items: stretch;
}

.page-home .hero-stage-actions {
    align-self: flex-end;
}

.page-home .hero-stage-brand {
    display: none !important;
}

.home-priority-panel .panel-content {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    align-items: center;
}

.home-priority-art {
    min-width: 0;
    margin: 0;
    align-self: stretch;
    overflow: hidden;
    border-radius: 8px;
}

.home-priority-art img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center center;
}

.home-priority-actions,
.home-priority-meta {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .home-priority-panel .panel-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-priority-art {
        order: -1;
        aspect-ratio: 16 / 9;
    }

    .home-priority-art img {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .page-home .hero-stage {
        height: 610px !important;
        min-height: 610px !important;
        padding: 0 !important;
    }

    .page-home .hero-stage-media {
        object-position: center top !important;
    }

    .page-home .hero-stage-actions {
        width: 100%;
        justify-content: center;
    }

    .home-priority-art {
        aspect-ratio: 1 / 1;
    }
}