.hst {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    color: #fff
}

.hst * {
    box-sizing: border-box
}

.hst__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, var(--hst-content-width));
    min-height: var(--hst-stage-height);
    background: var(--hst-content-bg);
    border-radius: var(--hst-shell-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18)
}

.hst--cards-left .hst__shell {
    grid-template-columns: minmax(360px, var(--hst-content-width)) minmax(0, 1fr)
}

.hst--cards-left .hst__overlay {
    order: 1
}

.hst--cards-left .hst__stage {
    order: 2
}

.hst--immersive .hst__shell {
    grid-template-columns: 1fr
}

.hst--immersive .hst__stage {
    height: var(--hst-stage-height)
}

.hst--immersive .hst__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, var(--hst-content-width));
    background: linear-gradient(180deg, rgba(var(--hst-content-bg-rgb), var(--hst-content-panel-opacity-top)), rgba(var(--hst-content-bg-rgb), var(--hst-content-panel-opacity)));
    backdrop-filter: blur(var(--hst-content-panel-blur));
    -webkit-backdrop-filter: blur(var(--hst-content-panel-blur))
}

.hst--immersive.hst--overlay-left .hst__overlay {
    left: 0;
    right: auto
}

.hst--immersive.hst--overlay-right .hst__overlay {
    left: auto;
    right: 0
}

.hst--immersive.hst--overlay-left .hst__stage-copy {
    left: calc(min(100%, var(--hst-content-width)) + 40px);
    right: 32px;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-end
}

.hst--immersive.hst--overlay-left .hst__headline-wrap {
    margin-left: auto;
    max-width: min(560px, 100%)
}

.hst--immersive.hst--overlay-left .hst__headline-year {
    margin-left: 18px
}

.hst--immersive.hst--overlay-left .hst__thumb-strip {
    /*left: calc(min(100%, var(--hst-content-width)) + 32px); */
    right: 24px;
    justify-content: flex-end;
    padding-left: 24px
}

.hst--immersive.hst--overlay-left .hst__floating-ui {
    /* left: calc(min(100%, var(--hst-content-width)) + 32px); */
    right: 24px;
    justify-content: flex-end
}

.hst--immersive.hst--overlay-left .hst__counter {
    order: 2;
    margin-left: auto
}

.hst--immersive.hst--overlay-left .hst__scroll-hint {
    order: 1
}

.hst--immersive.hst--overlay-right .hst__counter {
    order: 1;
    margin-left: 0
}

.hst--immersive.hst--overlay-right .hst__scroll-hint {
    order: 2
}

.hst--immersive.hst--overlay-left .hst__year-nav {
    left: auto;
    right: 22px;
    justify-content: flex-end
}

.hst--immersive.hst--overlay-left .hst__thumb-strip::-webkit-scrollbar {
    display: none
}

.hst *::-webkit-scrollbar {
    width: 0;
    height: 0
}

.hst * {
    scrollbar-width: none
}

.hst__stage {
    position: sticky;
    top: 0;
    min-height: var(--hst-stage-height);
    height: var(--hst-stage-height);
    overflow: hidden;
    background: #111
}

.hst__image-wrap {
    position: absolute;
    inset: 0;
    background: #111
}

.hst__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.01);
    filter: none;
    overflow: hidden
}

.hst__image.is-active {
    opacity: 1;
    z-index: 1
}

.hst__image-plane {
    position: absolute;
    inset: -1.5%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity var(--hst-fade-duration, 4500ms) ease-in-out;
    filter: inherit;
    background-repeat: no-repeat;
    backface-visibility: hidden;
    transform-origin: center center;
    animation-fill-mode: both
}

.hst__image-plane.is-visible {
    opacity: 1;
    z-index: 2
}

.hst__image-plane.is-leaving {
    opacity: 0;
    z-index: 1
}

.hst[data-image-filter="grayscale"] .hst__image,
.hst[data-image-filter="grayscale"] .hst__image-plane {
    filter: grayscale(1)
}

.hst[data-image-filter="sepia"] .hst__image,
.hst[data-image-filter="sepia"] .hst__image-plane {
    filter: sepia(.82) saturate(.86) contrast(1.02)
}

.hst[data-image-zoom="1"] .hst__image.is-active {
    transform: scale(1.04)
}

.hst__stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, var(--hst-overlay-top)), rgba(0, 0, 0, var(--hst-overlay)) 58%, rgba(0, 0, 0, var(--hst-overlay-bottom)))
}

.hst__image.is-active:not([data-images]) {
    animation: hstKenSingle calc(30s / var(--hst-kenburns-speed)) ease-in-out 1 both
}

.hst__image-plane.is-visible.hst__anim-1,
.hst__image-plane.is-leaving.hst__anim-1 {
    animation: hstKenA calc(28s / var(--hst-kenburns-speed)) ease-in-out 1 both
}

.hst__image-plane.is-visible.hst__anim-2,
.hst__image-plane.is-leaving.hst__anim-2 {
    animation: hstKenB calc(30s / var(--hst-kenburns-speed)) ease-in-out 1 both
}

.hst__image-plane.is-visible.hst__anim-3,
.hst__image-plane.is-leaving.hst__anim-3 {
    animation: hstKenC calc(32s / var(--hst-kenburns-speed)) ease-in-out 1 both
}

.hst__image-plane.is-visible.hst__anim-4,
.hst__image-plane.is-leaving.hst__anim-4 {
    animation: hstKenD calc(34s / var(--hst-kenburns-speed)) ease-in-out 1 both
}

@keyframes hstKenA {
    0% {
        transform: translate(calc(-1.2% * var(--hst-kenburns-strength, 1)), calc(-1% * var(--hst-kenburns-strength, 1))) scale(calc(1.02 + 0.01 * var(--hst-kenburns-strength, 1)))
    }

    100% {
        transform: translate(calc(.8% * var(--hst-kenburns-strength, 1)), calc(1% * var(--hst-kenburns-strength, 1))) scale(calc(1.04 + 0.04 * var(--hst-kenburns-strength, 1)))
    }
}

@keyframes hstKenB {
    0% {
        transform: translate(calc(-.8% * var(--hst-kenburns-strength, 1)), calc(1% * var(--hst-kenburns-strength, 1))) scale(calc(1.02 + 0.02 * var(--hst-kenburns-strength, 1)))
    }

    100% {
        transform: translate(calc(1% * var(--hst-kenburns-strength, 1)), calc(-.8% * var(--hst-kenburns-strength, 1))) scale(calc(1.04 + 0.04 * var(--hst-kenburns-strength, 1)))
    }
}

@keyframes hstKenC {
    0% {
        transform: translate(calc(-1% * var(--hst-kenburns-strength, 1)), calc(-.8% * var(--hst-kenburns-strength, 1))) scale(calc(1.02 + 0.02 * var(--hst-kenburns-strength, 1)))
    }

    100% {
        transform: translate(calc(1.2% * var(--hst-kenburns-strength, 1)), calc(1.1% * var(--hst-kenburns-strength, 1))) scale(calc(1.04 + 0.04 * var(--hst-kenburns-strength, 1)))
    }
}

@keyframes hstKenD {
    0% {
        transform: translate(calc(-1% * var(--hst-kenburns-strength, 1)), calc(.8% * var(--hst-kenburns-strength, 1))) scale(calc(1.02 + 0.01 * var(--hst-kenburns-strength, 1)))
    }

    100% {
        transform: translate(calc(.9% * var(--hst-kenburns-strength, 1)), calc(-1% * var(--hst-kenburns-strength, 1))) scale(calc(1.04 + 0.03 * var(--hst-kenburns-strength, 1)))
    }
}

@keyframes hstKenSingle {
    0% {
        transform: translate(calc(-.8% * var(--hst-kenburns-strength, 1)), calc(-.6% * var(--hst-kenburns-strength, 1))) scale(calc(1.01 + 0.01 * var(--hst-kenburns-strength, 1)))
    }

    100% {
        transform: translate(calc(.8% * var(--hst-kenburns-strength, 1)), calc(.7% * var(--hst-kenburns-strength, 1))) scale(calc(1.04 + 0.03 * var(--hst-kenburns-strength, 1)))
    }
}

.hst__year-nav {
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 4;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 50%
}

.hst__year-nav-item {
    appearance: none;
    border: 0;
    background: rgba(255, 255, 255, .10);
    color: var(--hst-nav-text);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
    opacity: .72
}

.hst__year-nav-item.is-active,
.hst__year-nav-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .18);
    transform: translateY(-1px)
}

.hst__floating-ui {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    pointer-events: none
}

.hst__ui-badge {
    background: rgba(27, 29, 34, .72);
    background: color-mix(in srgb, var(--hst-ui-badge-bg) 86%, transparent);
    color: var(--hst-ui-badge-text);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px
}

.hst__counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    order: 1
}

.hst__counter-current {
    font-size: var(--hst-counter-size);
    color: var(--hst-accent)
}

.hst__counter-sep,
.hst__counter-total {
    font-size: calc(var(--hst-counter-size) - 2px);
    opacity: .95
}

.hst__scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    transition: opacity .3s ease, transform .3s ease;
    white-space: nowrap;
    max-width: calc(100% - 110px);
    overflow: hidden;
    order: 2
}

.hst.has-scrolled .hst__scroll-hint,
.hst.is-end .hst__scroll-hint {
    opacity: 0;
    transform: translateY(6px)
}

.hst__scroll-text {
    font-size: var(--hst-hint-size);
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hst__scroll-mouse {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: 18px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 999px;
    padding-top: 4px;
    flex: 0 0 auto
}

.hst__scroll-wheel {
    display: block;
    width: 4px;
    height: 7px;
    border-radius: 999px;
    background: var(--hst-accent);
    animation: hstWheel 1.5s ease-in-out infinite
}

@keyframes hstWheel {
    0% {
        transform: translateY(0);
        opacity: 0
    }

    20% {
        opacity: 1
    }

    50% {
        transform: translateY(8px);
        opacity: 1
    }

    100% {
        transform: translateY(8px);
        opacity: 0
    }
}

.hst__stage-copy {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 168px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    color: var(--hst-stage-copy)
}

.hst__headline-wrap {
    max-width: 76%
}

.hst__headline {
    font-size: clamp(22px, 3vw, var(--hst-headline-size));
    font-weight: 700;
    line-height: 1.04;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .35)
}

.hst__headline-year,
.hst__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: var(--hst-year-size);
    background: var(--hst-year-bg);
    color: var(--hst-year-text)
}

.hst__thumb-strip {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 92px;
    z-index: 3;
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 0
}

.hst__thumb {
    appearance: none;
    flex: 0 0 76px;
    height: 56px;
    border-radius: var(--hst-thumb-radius);
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: .68;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
    transition: transform .2s ease, opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
    background-clip: padding-box
}

.hst__thumb.is-active,
.hst__thumb:hover {
    opacity: 1;
    border-color: var(--hst-thumb-border);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 12px 24px rgba(0, 0, 0, .18)
}

.hst__mobile-dots {
    display: none
}

.hst__overlay {
    position: relative;
    z-index: 3;
    height: var(--hst-stage-height);
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(var(--hst-content-bg-rgb), var(--hst-content-panel-opacity-top)), rgba(var(--hst-content-bg-rgb), var(--hst-content-panel-opacity)));
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
    scroll-padding-top: 13vh;
    scroll-padding-bottom: 16vh
}

.hst__overlay-progress {
    position: absolute;
    top: 22px;
    right: 22px;
    bottom: 22px;
    width: 2px;
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    overflow: hidden;
    z-index: 2
}

.hst__ui-progress-bar {
    display: block;
    width: 100%;
    height: 12%;
    background: var(--hst-rail);
    box-shadow: 0 0 20px color-mix(in srgb, var(--hst-rail) 55%, transparent)
}

.hst__overlay-inner {
    padding: 12vh 28px 14vh;
    display: flex;
    flex-direction: column;
    gap: 14vh;
    min-height: 100%;
    padding-right: 52px
}

.hst__card {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    opacity: .42;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease;
    scroll-snap-align: start
}

.hst__card.is-active {
    opacity: 1;
    transform: translateY(0)
}

.hst__rail {
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 2px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    overflow: hidden
}

.hst__rail span {
    display: block;
    width: 100%;
    height: 34%;
    background: var(--hst-rail);
    box-shadow: 0 0 24px color-mix(in srgb, var(--hst-rail) 55%, transparent)
}

.hst__card-body {
    margin-left: 24px;
    background: rgba(var(--hst-card-bg-rgb), var(--hst-card-opacity));
    backdrop-filter: blur(var(--hst-card-blur));
    -webkit-backdrop-filter: blur(var(--hst-card-blur));
    padding: var(--hst-card-padding);
    border-radius: var(--hst-card-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
    width: min(100%, calc(var(--hst-content-width) - 44px));
    border: 1px solid rgba(255, 255, 255, .35)
}

.hst__year,
.hst__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px
}

.hst__label {
    font-size: var(--hst-label-size);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--hst-label)
}

.hst__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.2vw, var(--hst-title-size));
    line-height: 1.06;
    color: var(--hst-title)
}

.hst__text {
    font-size: var(--hst-text-size);
    line-height: 1.7;
    color: var(--hst-text)
}

.hst__text p:last-child {
    margin-bottom: 0
}

.hst__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--hst-button-bg);
    color: var(--hst-button-text);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--hst-button-size)
}

.hst__actions {
    margin-top: 20px
}

.hst[data-show-rail="0"] .hst__rail,
.hst[data-show-rail="0"] .hst__overlay-progress {
    display: none
}

.hst[data-show-rail="0"] .hst__card-body {
    margin-left: 0;
    width: min(100%, calc(var(--hst-content-width) - 24px))
}

.hst[data-show-year="0"] .hst__headline-year,
.hst[data-show-year="0"] .hst__year {
    display: none
}

.hst[data-show-counter="0"] .hst__counter {
    display: none
}

.hst[data-show-hint="0"] .hst__scroll-hint {
    display: none
}

.hst[data-show-year-nav="0"] .hst__year-nav {
    display: none
}

.hst[data-show-thumbs="0"] .hst__thumb-strip {
    display: none
}

.hst-empty {
    padding: 18px;
    border: 1px dashed #ccc
}

@media (max-width:1180px) {
    .hst__overlay-inner {
        padding-right: 44px
    }

    .hst__card-body {
        width: min(100%, calc(var(--hst-content-width) - 64px))
    }
}

@media (max-width:980px) {

    .hst__shell,
    .hst--cards-left .hst__shell,
    .hst--immersive .hst__shell {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: hidden;
        background: transparent
    }

    .hst__stage,
    .hst--immersive .hst__stage {
        position: relative;
        height: var(--hst-stage-height-mobile);
        min-height: var(--hst-stage-height-mobile)
    }

    .hst__year-nav {
        left: 16px;
        top: 16px;
        right: 16px;
        max-width: none;
        gap: 6px
    }

    .hst__year-nav-item {
        padding: 7px 10px;
        font-size: 12px
    }

    .hst__floating-ui {
        left: 16px;
        right: 16px;
        top: 16px;
        bottom: auto;
        gap: 8px;
        justify-content: flex-end
    }

    .hst__scroll-hint {
        display: none !important
    }

    .hst__counter {
        padding: 9px 12px
    }

    .hst__counter-current {
        font-size: calc(var(--hst-counter-size) - 1px)
    }

    .hst__stage-copy {
        left: 20px;
        right: 20px;
        bottom: 92px;
        align-items: flex-end
    }

    .hst__headline-wrap,
    .hst__headline {
        max-width: 100%
    }

    .hst__headline {
        font-size: clamp(24px, 7vw, 40px)
    }

    .hst__thumb-strip {
        display: none !important
    }

    .hst__overlay,
    .hst--immersive .hst__overlay {
        position: relative;
        width: auto;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        background: transparent;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scroll-padding-left: 14px;
        scroll-padding-right: 14px;
        margin-top: -42px;
        z-index: 5;
        padding-bottom: 12px
    }

    .hst__overlay-progress {
        display: none
    }

    .hst__mobile-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 12px 16px 12px;
        position: relative;
        min-width: 100%;
        width: 100%;
        z-index: 6;
        pointer-events: auto;
        overflow: visible
    }

    .hst__mobile-dot {
        appearance: none;
        border: 0;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .42);
        padding: 0;
        flex: 0 0 auto;
        transition: transform .2s ease, background .2s ease, opacity .2s ease
    }

    .hst__mobile-dot.is-active {
        background: var(--hst-accent);
        transform: scale(1.18);
        opacity: 1
    }

    .hst__overlay-inner {
        display: flex;
        flex-direction: row;
        gap: 14px;
        padding: 0 14px 6px;
        min-height: 0;
        padding-right: 14px
    }

    .hst__card {
        min-height: auto;
        opacity: 1;
        transform: none;
        display: block;
        scroll-snap-align: center;
        flex: 0 0 calc(100% - 28px);
        width: calc(100% - 28px)
    }

    .hst__card-body {
        width: 100%;
        margin-left: 0;
        border-radius: 0;
        padding: 22px;
        box-shadow: 0 18px 34px rgba(0, 0, 0, .16)
    }

    .hst__rail {
        display: none
    }

    .hst__mobile-swipe-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 0 16px 14px;
        position: relative;
        z-index: 6;
        color: rgba(255, 255, 255, .88);
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase
    }

    .hst__mobile-swipe-indicator::before,
    .hst__mobile-swipe-indicator::after {
        content: "";
        display: block;
        width: 18px;
        height: 1px;
        background: rgba(255, 255, 255, .45)
    }
}

@media (max-width:640px) {
    .hst__shell {
        border-radius: 0
    }

    .hst__floating-ui {
        left: 12px;
        right: 12px;
        top: 12px;
        bottom: auto;
        justify-content: flex-end
    }

    .hst__counter {
        flex: 0 0 auto
    }

    .hst__stage-copy {
        left: 16px;
        right: 16px;
        bottom: 72px
    }

    .hst__headline {
        font-size: clamp(20px, 7vw, 32px)
    }

    .hst__headline-year {
        padding: 8px 12px;
        font-size: 13px
    }

    .hst__overlay {
        margin-top: -36px;
        padding-bottom: 10px
    }

    .hst__mobile-dots {
        padding: 0 12px 8px
    }

    .hst__overlay-inner {
        padding: 0 12px 4px;
        gap: 12px
    }

    .hst__card {
        flex-basis: calc(100% - 24px);
        width: calc(100% - 24px)
    }

    .hst__card-body {
        padding: 18px;
        border-radius: 0
    }

    .hst__thumb,
    .hst__headline-year,
    .hst__year,
    .hst__ui-badge,
    .hst__button,
    .hst__year-nav-item {
        border-radius: 0 !important
    }
}




@media (max-width:980px) {
    .hst__mobile-ui {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        z-index: 20;
        margin-top: 12px;
        padding: 12px 16px 18px;
        overflow: visible !important;
    }

    .hst__mobile-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 21;
        padding: 6px 12px !important;
        margin: 0 !important;
        overflow: visible !important;
        min-height: 22px;
    }

    .hst__mobile-dot {
        display: block !important;
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        border-radius: 999px !important;
        border: 0;
        background: rgba(255, 255, 255, .42);
        padding: 0;
        margin: 0;
        box-shadow: none;
    }

    .hst__mobile-dot.is-active {
        background: var(--hst-accent) !important;
        transform: scale(1.18);
        opacity: 1;
    }

    .hst__mobile-swipe-indicator {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: rgba(255, 255, 255, .9);
        font-size: 11px;
        line-height: 1;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
        position: relative;
        z-index: 21;
        overflow: visible !important;
    }

    .hst__mobile-swipe-indicator::before,
    .hst__mobile-swipe-indicator::after {
        content: "";
        display: block;
        width: 18px;
        height: 1px;
        background: rgba(255, 255, 255, .45);
    }

    /* remove clipping sources around mobile footer ui */
    .hst__shell,
    .hst__stage,
    .hst__overlay,
    .hst__overlay-inner {
        overflow: visible;
    }
}


@media (max-width:980px) {
    .hst {
        overflow: visible
    }

    .hst__shell {
        position: relative;
        overflow: visible;
        background: transparent
    }

    .hst__mobile-ui {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -48px;
        z-index: 30;
        padding: 8px 16px 0;
        pointer-events: none;
    }

    .hst__mobile-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 31;
        padding: 6px 12px !important;
        margin: 0 !important;
        overflow: visible !important;
        min-height: 22px;
        pointer-events: auto;
    }

    .hst__mobile-dot {
        display: block !important;
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        border-radius: 999px !important;
        border: 0;
        background: rgba(255, 255, 255, .42);
        padding: 0;
        margin: 0;
        box-shadow: none;
    }

    .hst__mobile-dot.is-active {
        background: var(--hst-accent) !important;
        transform: scale(1.18);
        opacity: 1
    }

    .hst__mobile-swipe-indicator {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: rgba(255, 255, 255, .9);
        font-size: 11px;
        line-height: 1;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
        position: relative;
        z-index: 31;
        pointer-events: none;
    }

    .hst__mobile-swipe-indicator::before,
    .hst__mobile-swipe-indicator::after {
        content: "";
        display: block;
        width: 18px;
        height: 1px;
        background: rgba(255, 255, 255, .45)
    }

    .hst__overlay,
    .hst__overlay-inner {
        overflow: visible
    }
}


/* v2.8.1 mobile dots + swipe fix */
.hst__mobile-ui,
.hst__mobile-dots,
.hst__mobile-swipe-indicator {
    display: none;
}

@media (max-width:980px) {
    .hst__mobile-ui {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        z-index: 30;
        margin-top: 10px;
        padding: 10px 16px 16px;
        overflow: visible !important;
    }

    .hst__mobile-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 31;
        padding: 6px 12px !important;
        margin: 0 !important;
        overflow: visible !important;
        min-height: 18px;
    }

    .hst__mobile-dot {
        display: block !important;
        width: 10px !important;
        height: 10px !important;
        min-width: 10px !important;
        min-height: 10px !important;
        border-radius: 999px !important;
        border: 0 !important;
        background: rgba(255, 255, 255, .42) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none;
    }

    .hst__mobile-dot.is-active {
        background: var(--hst-accent) !important;
        transform: scale(1.18) !important;
        opacity: 1 !important;
    }

    .hst__mobile-swipe-indicator {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: rgba(255, 255, 255, .9);
        font-size: 11px;
        line-height: 1;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
        position: relative;
        z-index: 31;
        overflow: visible !important;
    }

    .hst__mobile-swipe-indicator::before,
    .hst__mobile-swipe-indicator::after {
        content: "";
        display: block;
        width: 18px;
        height: 1px;
        background: rgba(255, 255, 255, .45);
    }
}

/* desktop must never show the mobile hint/ui */
@media (min-width:981px) {

    .hst__mobile-ui,
    .hst__mobile-dots,
    .hst__mobile-swipe-indicator {
        display: none !important;
    }
}


/* v2.8.2 mobile dots on-photo fix */
.hst__mobile-ui,
.hst__mobile-dots {
    display: none;
}

@media (max-width:980px) {
    .hst__mobile-ui {
        display: block !important;
        position: absolute !important;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 40 !important;
        margin: 0 !important;
        padding: 0 !important;
        pointer-events: none;
    }

    .hst__mobile-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 41;
        padding: 8px 10px !important;
        margin: 0 !important;
        overflow: visible !important;
        min-height: 18px;
        pointer-events: auto;
    }

    .hst__mobile-dot {
        display: block !important;
        width: 10px !important;
        height: 10px !important;
        min-width: 10px !important;
        min-height: 10px !important;
        border-radius: 999px !important;
        border: 0 !important;
        background: rgba(255, 255, 255, .42) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none;
    }

    .hst__mobile-dot.is-active {
        background: var(--hst-accent) !important;
        transform: scale(1.18) !important;
        opacity: 1 !important;
    }

    .hst__mobile-swipe-indicator {
        display: none !important;
    }

    /* old bottom layout off */
    .hst__overlay+.hst__mobile-ui,
    .hst__shell>.hst__mobile-ui {
        overflow: visible !important;
    }
}

@media (min-width:981px) {

    .hst__mobile-ui,
    .hst__mobile-dots,
    .hst__mobile-swipe-indicator {
        display: none !important;
    }
}


/* v2.8.3 mobile dots in stage fix */
.hst__mobile-ui,
.hst__mobile-dots {
    display: none;
}

@media (max-width:980px) {
    .hst__stage {
        position: relative;
        overflow: hidden;
    }

    .hst__mobile-ui {
        display: block !important;
        position: absolute !important;
        left: 0;
        right: 0;
        bottom: 55px;
        z-index: 50 !important;
        margin: 0 !important;
        padding: 0 12px !important;
        pointer-events: none;
    }

    .hst__mobile-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        position: relative;
        z-index: 51;
        padding: 0 !important;
        margin: 0 !important;
        min-height: 12px;
        overflow: visible !important;
        pointer-events: auto;
    }

    .hst__mobile-dot {
        display: block !important;
        width: 10px !important;
        height: 10px !important;
        min-width: 10px !important;
        min-height: 10px !important;
        border-radius: 999px !important;
        border: 0 !important;
        background: rgba(255, 255, 255, .42) !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none;
    }

    .hst__mobile-dot.is-active {
        background: var(--hst-accent) !important;
        transform: scale(1.18) !important;
    }

    .hst__mobile-swipe-indicator {
        display: none !important;
    }
}

@media (min-width:981px) {

    .hst__mobile-ui,
    .hst__mobile-dots,
    .hst__mobile-swipe-indicator {
        display: none !important;
    }
}