/* v1.5.4a Hero Slider */

.ia-hero-slider {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #050607;
    border-bottom: 2px solid #b36a08;
}

.ia-hero-track {
    position: relative;
    width: 100%;
    height: 620px;
    min-height: 620px;
}

.ia-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 620px;
    min-height: 620px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity .55s ease, visibility .55s ease;
    z-index: 1;
}

.ia-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.ia-hero-inner {
    position: relative;
    height: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.ia-hero-copy {
    max-width: 710px;
    padding: 66px 0 120px;
}

.ia-hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    line-height: .92;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,.45);
}

.ia-hero-copy p {
    max-width: 580px;
    margin: 0 0 24px;
    color: #f4f7fb;
    font-size: 1.12rem;
}

.ia-hero-floating-wrap {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.portal-floating-feature {
    position: absolute;
    right: 0;
    top: 140px;
    width: min(330px, 31vw);
    min-height: 280px;
    pointer-events: auto;
}

.ia-hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 44px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(5,6,7,.42);
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

.ia-hero-control:hover {
    background: rgba(179,106,8,.72);
}

.ia-hero-prev { left: 20px; }
.ia-hero-next { right: 20px; }

.ia-hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 38px;
    z-index: 9;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ia-hero-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.8);
    background: rgba(255,255,255,.18);
    border-radius: 999px;
    cursor: pointer;
}

.ia-hero-dots button.active {
    background: #d08412;
    border-color: #d08412;
}

.ia-hero-empty {
    display: flex;
    align-items: center;
}

@media(max-width: 1000px) {
    .portal-floating-feature {
        display: none;
    }
}

@media(max-width: 800px) {
    .ia-hero-slider,
    .ia-hero-track,
    .ia-hero-slide,
    .ia-hero-inner {
        min-height: 460px;
        height: 460px;
    }

    .ia-hero-copy {
        padding: 36px 22px 80px;
    }

    .ia-hero-control {
        width: 36px;
        height: 48px;
        font-size: 2rem;
    }
}
