/* 238 - Stabil 2/3 + 1/3 főoldali műsorújság / Instant diavetítés javítás */
html body.front.is-home .home-schedule-news-cluster > .home-schedule-instant-row {
    display: grid !important;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr) !important;
    align-items: start !important;
    gap: var(--gap) !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
}

html body.front.is-home .home-schedule-news-cluster > .home-schedule-instant-row.has-schedule-only {
    grid-template-columns: minmax(0, 1fr) !important;
}

html body.front.is-home .home-schedule-instant-row > .today-schedule-section {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    align-self: start !important;
}

html body.front.is-home .home-schedule-instant-row > .home-instant-slideshow-capsule {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    align-self: start !important;
}

html body.front.is-home .home-instant-slideshow-stage {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
}

html body.front.is-home .home-instant-slide {
    position: absolute !important;
    inset: 0 !important;
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transform: none !important;
}

html body.front.is-home .home-instant-slide.is-active:not([hidden]) {
    z-index: 2 !important;
    display: block !important;
    pointer-events: auto !important;
    animation: sepsiInstantSlideFade238 .42s ease both;
}

html body.front.is-home .home-instant-slide[hidden] {
    display: none !important;
}

html body.front.is-home .home-instant-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

@keyframes sepsiInstantSlideFade238 {
    from { opacity: .22; }
    to { opacity: 1; }
}

@media (max-width: 860px) {
    html body.front.is-home .home-schedule-news-cluster > .home-schedule-instant-row {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    html body.front.is-home .home-schedule-instant-row > .today-schedule-section,
    html body.front.is-home .home-schedule-instant-row > .home-instant-slideshow-capsule {
        grid-column: 1 !important;
    }

    html body.front.is-home .home-instant-slideshow-stage {
        aspect-ratio: 16 / 9 !important;
    }
}

@media (max-width: 620px) {
    html body.front.is-home .home-instant-slideshow-stage {
        aspect-ratio: 4 / 3 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body.front.is-home .home-instant-slide.is-active:not([hidden]) {
        animation: none !important;
    }
}
