.hero.orama-hero-enabled {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #082620;
}

.hero.orama-hero-enabled::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4, 28, 23, .90) 0%, rgba(4, 38, 31, .66) 38%, rgba(4, 35, 29, .30) 70%, rgba(4, 28, 23, .18) 100%),
        linear-gradient(0deg, rgba(4, 25, 21, .28), rgba(4, 25, 21, .08));
}

.hero.orama-hero-enabled > :not(.orama-hero-slideshow) {
    position: relative;
    z-index: 2;
}

.orama-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #082620;
}

.orama-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(var(--orama-photo-columns, 3), minmax(0, 1fr));
    opacity: 0;
    transform: scale(1.012);
    transition: opacity 1.15s ease, transform 6.5s ease;
    will-change: opacity, transform;
}

.orama-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.orama-hero-photo {
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #0b3b31;
}

.orama-hero-photo + .orama-hero-photo {
    border-left: 2px solid rgba(255, 255, 255, .12);
}

.orama-hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.96) contrast(1.02);
}

@media (max-width: 1000px) {
    .hero.orama-hero-enabled::after {
        background: linear-gradient(90deg, rgba(4, 28, 23, .88), rgba(4, 35, 29, .42));
    }
}

@media (max-width: 700px) {
    .hero.orama-hero-enabled::after {
        background: linear-gradient(180deg, rgba(4, 28, 23, .78), rgba(4, 28, 23, .55));
    }
}

@media (prefers-reduced-motion: reduce) {
    .orama-hero-slide {
        transition: opacity .01s linear;
        transform: none;
    }
}

