/* ============================================================
   Video Scroll Points
   ============================================================ */

.section-video-scroll {
    position: relative;
    --vsp-fast-panel-enter-duration: 0.16s;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Stage: tall scrollable container */
.vsp-stage {
    position: relative;
}

/* Native video layer */
.vsp-video {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    object-fit: cover;
    pointer-events: none;
    background: #000;
    contain: paint;
    z-index: 1;
}

.vsp-video--reverse {
    z-index: 0;
}

.vsp-video.vsp-video--active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.vsp-video.vsp-video--previous {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

/* Sticky wrapper */
.vsp-sticky {
    height: 100vh;
    overflow: hidden;
}

.vsp-loading-screen {
    position: absolute;
    inset: 0;
    z-index: 6;
    min-height: 0;
    background: #000;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.vsp-loading-screen .home-loading-screen__inner {
    width: min(92vw, 400px);
}

.vsp-loading-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fabOuter.hasIcon.popup {
    width: 56px;
    height: 56px;
}

.fabOuter.hasIcon.popup,
.vsp-sound-toggle {
    bottom: 18px !important;
}

.vsp-sound-toggle {
    position: fixed;
    right: 30px;
    bottom: 18px;
    z-index: 2147482300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid var(--color-primary-500);
    border-radius: 999px;
    background: var(--color-primary-500);
    color: var(--color-black);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.vsp-sound-toggle:hover,
.vsp-sound-toggle:focus-visible,
.vsp-sound-toggle.is-active {
    border-color: var(--color-primary-500);
    background: var(--color-black);
    color: var(--color-primary-500);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
}

.vsp-sound-toggle:hover,
.vsp-sound-toggle:focus-visible {
    transform: translateY(-3px);
}

.vsp-sound-toggle__icon {
    display: block;
    width: 22px;
    height: 22px;
    background-color: currentColor;
    -webkit-mask-image: url("../assets/icons/sound_muted.svg");
    mask-image: url("../assets/icons/sound_muted.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.vsp-sound-toggle.is-active .vsp-sound-toggle__icon {
    -webkit-mask-image: url("../assets/icons/sound.svg");
    mask-image: url("../assets/icons/sound.svg");
}

.vsp-sound-prompt {
    position: fixed;
    inset: 0;
    z-index: 2147483200;
}

.vsp-sound-prompt__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.58);
    cursor: pointer;
}

.vsp-sound-prompt__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92vw, 560px);
    padding: 32px;
    border-radius: 27px;
    background: linear-gradient(94deg, rgba(255, 255, 255, 0.05) 0.65%, rgba(255, 255, 255, 0.10) 28.83%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: var(--shadow-default);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--color-white);
    transform: translate(-50%, -50%);
}

.vsp-sound-prompt__title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: var(--font-weight-light);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.vsp-sound-prompt__description {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: var(--text-base);
    line-height: 1.25;
}

.vsp-sound-prompt__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 24px;
}

.vsp-sound-prompt__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    box-sizing: border-box;
    min-height: 56px;
    padding: 14px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.vsp-sound-prompt__action--confirm.wunuButton {
    appearance: none;
    -webkit-appearance: none;
    border-width: 2px !important;
    border-color: var(--color-primary-500) !important;
    background: var(--color-primary-500);
    color: var(--color-black) !important;
}

.vsp-sound-prompt__action--confirm.wunuButton:hover,
.vsp-sound-prompt__action--confirm.wunuButton:focus-visible,
.vsp-sound-prompt__action--confirm.wunuButton:active {
    background: var(--color-black);
    color: var(--color-primary-500) !important;
}

.vsp-sound-prompt__action--confirm.wunuButton::after,
.vsp-sound-prompt__action--cancel::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-left: 10px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    flex-shrink: 0;
    transition: background-color 0.18s ease;
}

.vsp-sound-prompt__action--confirm.wunuButton::after {
    -webkit-mask-image: url("../assets/icons/sound.svg");
    mask-image: url("../assets/icons/sound.svg");
}

.vsp-sound-prompt__action--cancel {
    border: 2px solid var(--color-primary-500);
    border-radius: 999px;
    background: transparent;
    color: var(--color-primary-500);
}

.vsp-sound-prompt__action--cancel::after {
    -webkit-mask-image: url("../assets/icons/sound_muted.svg");
    mask-image: url("../assets/icons/sound_muted.svg");
}

.vsp-sound-prompt__action--cancel:hover,
.vsp-sound-prompt__action--cancel:focus-visible {
    border-color: var(--color-black);
    background: var(--color-primary-500);
    color: var(--color-black);
}

@media (max-width: 767px) {
    .vsp-sound-toggle {
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50px;
    }

    .vsp-sound-toggle__icon {
        width: 16px;
        height: 16px;
    }

    .vsp-sound-prompt__dialog {
        width: calc(100vw - 24px);
        padding: 22px 18px;
    }

    .vsp-sound-prompt__description,
    .vsp-sound-prompt__action {
        font-size: 16px;
    }

    .vsp-sound-prompt__actions {
        flex-wrap: wrap;
        margin-top: 18px;
    }

    .vsp-sound-prompt__action {
        flex-basis: 100%;
        white-space: normal;
    }
}

@media (min-width: 768px) {
    .vsp-sound-toggle {
        right: 30px;
    }
}

@media (min-width: 1600px) {
    .vsp-sound-toggle {
        right: 30px;
    }
}

/* Kept in the template for compatibility; rendering now uses native videos. */
.vsp-canvas {
    display: none;
}

/* ============================================================
   Left Timeline
   ============================================================ */

.vsp-timeline {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

/* Dots between items */
.vsp-timeline__dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
    width: 14px;
}

.vsp-timeline__dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.15s ease;
}

.vsp-timeline__dots span.filled {
    background: #FD0;
}

@media (max-width: 1919px) {
    .vsp-timeline__dots {
        padding: 15px 0;
    }

    .section-video-scroll .vsp-panel {
        padding: 29px 36px;
        max-width: min(495px, 58vw);
    }

    .section-video-scroll .vsp-panel--pos-top-left,
    .section-video-scroll .vsp-panel--pos-middle-left,
    .section-video-scroll .vsp-panel--pos-bottom-left {
        left: 20%;
    }

    .section-video-scroll .vsp-panel__icon {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        align-self: flex-start;
        justify-content: flex-start;
    }

    .vsp-panel__headline {
        font-size: 31px !important;
    }
}

/* Timeline item button */
.vsp-timeline__item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

/* Circle */
.vsp-timeline__dot {
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.50);
    background: transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}

/* Label */
.vsp-timeline__label {
    font-family: Barlow, sans-serif;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.50);
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

/* Active state */
.vsp-timeline__item--active .vsp-timeline__dot,
.vsp-timeline__item--done .vsp-timeline__dot {
    border-color: #FD0;
    background: #FD0;
    box-shadow: 0 0 8px 2px rgba(255, 221, 0, 0.55);
}

.vsp-timeline__item--active .vsp-timeline__label,
.vsp-timeline__item--done .vsp-timeline__label {
    color: #FD0;
    text-shadow: 0 0 15px #FD0;
    font-size: var(--text-base);
    font-weight: var(--font-weight-bold);
    font-style: normal;
    line-height: normal;
}

/* Show label on hover */
.vsp-timeline__item:hover .vsp-timeline__label {
    opacity: 1;
    transform: translateX(0);
    color: rgba(255, 255, 255, 0.85);
}

.vsp-timeline__item:hover .vsp-timeline__dot {
    border-color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   Content Panels
   ============================================================ */

.vsp-panel {
    --vsp-tx: 0px;
    --vsp-ty: 0px;
    --vsp-panel-content-gap: 12px;
    position: absolute;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: var(--vsp-panel-content-gap) 24px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translate(var(--vsp-tx), calc(var(--vsp-ty) + 24px)) scale(0.985);
    pointer-events: none;
    transition:
        opacity 0.32s ease,
        transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 27px;
    background: linear-gradient(94deg, rgba(255, 255, 255, 0.05) 0.65%, rgba(255, 255, 255, 0.10) 28.83%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: var(--shadow-default);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    padding: 32px 43px;
    width: fit-content;
    max-width: min(660px, 77vw);
}

.vsp-panel--active {
    opacity: 1;
    visibility: visible;
    transform: translate(var(--vsp-tx), var(--vsp-ty)) scale(1);
    pointer-events: auto;
}

.vsp--playing .vsp-panel--active {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
    transform: translate(var(--vsp-tx), var(--vsp-ty)) scale(1);
}

.vsp--fast-panel-enter .vsp-panel--active {
    transition-duration: var(--vsp-fast-panel-enter-duration);
}

.section-video-scroll.vsp-is-webkit .vsp--playing .vsp-panel {
    transition-duration: 0.16s;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* ── Position modifiers ────────────────────────────────────────── */

.vsp-panel--pos-top-left    { top: 10%; left: 17%; }
.vsp-panel--pos-middle-left { top: 50%; left: 17%; --vsp-ty: -50%; }
.vsp-panel--pos-bottom-left { bottom: 10%; left: 17%; }

.vsp-panel--pos-top-right    { top: 10%; right: 5%; }
.vsp-panel--pos-middle-right { top: 50%; right: 5%; --vsp-ty: -50%; }
.vsp-panel--pos-bottom-right { bottom: 10%; right: 5%; }

.vsp-panel--pos-top-center    { top: 10%; left: 50%; --vsp-tx: -50%; }
.vsp-panel--pos-center-center { top: 50%; left: 50%; --vsp-tx: -50%; --vsp-ty: -50%; }
.vsp-panel--pos-bottom-center { bottom: 10%; left: 50%; --vsp-tx: -50%; }

/* Scroll button: mobile only */
.vsp-scroll-btn {
    display: none;
}

.vsp-scroll-btn[hidden] {
    display: none !important;
}

.vsp-scroll-actions {
    display: none;
}

.vsp-desktop-scroll-actions {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transform: translateX(-50%);
    transition: opacity 180ms ease, visibility 180ms ease;
}

.vsp-desktop-scroll-btn {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    transition: background-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.vsp-scroll-lottie {
    display: none;
    width: 63px;
    height: 88px;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.vsp-scroll-lottie lottie-player {
    display: block;
    width: 100%;
    height: 100%;
}

.vsp-at-first-point .vsp-desktop-scroll-btn--down {
    width: 63px;
    height: 88px;
}

.vsp-at-first-point .vsp-desktop-scroll-btn--down .vsp-scroll-lottie {
    display: block;
}

.vsp-at-first-point .vsp-desktop-scroll-btn--down .vsp-scroll-icon {
    display: none;
}

.vsp-desktop-scroll-btn[hidden] {
    display: none !important;
}

.vsp-desktop-scroll-btn img {
    display: block;
    width: 46px;
    height: 46px;
    transition: opacity 180ms ease;
}

.vsp-desktop-scroll-btn--up img {
    transform: rotate(180deg);
}

.vsp-desktop-scroll-btn:hover,
.vsp-desktop-scroll-btn:focus-visible {
    filter: drop-shadow(0 0 12px rgba(255, 221, 0, 0.72));
    transform: translateY(-3px);
}

.vsp-desktop-scroll-btn.is-click-feedback,
.vsp-desktop-scroll-btn.is-click-feedback:hover,
.vsp-desktop-scroll-btn.is-click-feedback:focus-visible,
.vsp-scroll-btn.is-click-feedback {
    position: relative;
    border-radius: 999px;
    background: var(--color-black);
    color: var(--color-primary-500);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
    filter: none;
    outline: 2px solid var(--color-primary-500);
    outline-offset: 0;
}

.vsp-desktop-scroll-btn.is-click-feedback img,
.vsp-desktop-scroll-btn.is-click-feedback .vsp-scroll-lottie,
.vsp-scroll-btn.is-click-feedback img,
.vsp-scroll-btn.is-click-feedback .vsp-scroll-lottie {
    opacity: 0;
}

.vsp-desktop-scroll-btn.is-click-feedback::before,
.vsp-scroll-btn.is-click-feedback::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 3px);
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.vsp-desktop-scroll-btn.is-click-feedback::after,
.vsp-scroll-btn.is-click-feedback::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% + 5px);
    width: 12px;
    height: 12px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: translate(-50%, -50%) rotate(45deg);
}

.vsp-desktop-scroll-btn--up.is-click-feedback::after,
.vsp-scroll-btn--up.is-click-feedback::after {
    top: calc(50% - 5px);
    transform: translate(-50%, -50%) rotate(225deg);
}

.vsp-desktop-scroll-btn:disabled {
    opacity: 0.34;
    cursor: not-allowed;
    transform: none;
}

.vsp-panel__header {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    min-width: 0;
}

/* Icon — fixed size, stays on first row */
.vsp-panel__icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsp-panel__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text — full width, wraps below icon+headline row */
.vsp-panel__body {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vsp-panel__headline {
    flex: 1 1 0;
    min-width: 0;
    margin: 0 !important;
    margin-bottom: 0 !important;
    font-family: Barlow, SansSerif, sans-serif !important;
    font-size: 35px !important;
    font-style: normal !important;
    font-weight: var(--font-weight-light) !important;
    line-height: normal;
    color: var(--color-white) !important;
}

.vsp-panel__desc {
    margin: 0;
    margin-bottom: 10px;
    font-family: Barlow, SansSerif, sans-serif;
    font-size: calc(var(--text-md) * 0.7) !important;
    font-style: normal;
    font-weight: var(--font-weight-regular);
    line-height: normal;
    color: var(--color-white);
}

.vsp-panel__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 0;
}

.vsp-panel__actions--link-only {
    justify-content: flex-start;
}

.vsp-panel__story-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #FD0;
    font-family: Barlow, SansSerif, sans-serif;
    font-size: 15.4px;
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
}

.vsp-panel__story-trigger-icon {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-image: url("../assets/icons/sound.svg");
    mask-image: url("../assets/icons/sound.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.vsp-panel__story-trigger.is-active .vsp-panel__story-trigger-icon {
    -webkit-mask-image: url("../assets/icons/sound_muted.svg");
    mask-image: url("../assets/icons/sound_muted.svg");
}

.vsp-panel__story-trigger span {
    display: block;
    line-height: 1;
}

.vsp-panel__story-trigger:hover,
.vsp-panel__story-trigger:focus-visible {
    color: #FD0;
    text-shadow: 0 0 12px rgba(255, 221, 0, 0.70);
    text-decoration: none;
}

.vsp-panel__link {
    margin-left: auto;
    font-family: Barlow, SansSerif, sans-serif;
    font-size: 15.4px;
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: normal;
    color: #FD0 !important;
    text-decoration: none !important;
}

.vsp-panel__actions--link-only .vsp-panel__link {
    margin-left: 0;
}

.vsp-panel__link:visited,
.vsp-panel__link:focus-visible,
.vsp-panel__link:active {
    color: #FD0 !important;
    text-decoration: none !important;
}


.vsp-panel__link:hover {
    color: #FD0 !important;
    font-weight: var(--font-weight-bold);
    text-shadow: 0 0 12px rgba(255, 221, 0, 0.70);
    text-decoration: none !important;
    transition: text-shadow 0.2s ease, color 0.2s ease;
}

/* ============================================================
   Mobile
   ============================================================ */

@media (max-width: 1024px) {
    .vsp-timeline {
        display: none;
    }

    .vsp-desktop-scroll-actions {
        display: none;
    }

    /* Override all position modifiers — panel full-width docked to bottom */
    .vsp-panel,
    .vsp-panel--pos-top-left,
    .vsp-panel--pos-middle-left,
    .vsp-panel--pos-bottom-left,
    .vsp-panel--pos-top-right,
    .vsp-panel--pos-middle-right,
    .vsp-panel--pos-bottom-right,
    .vsp-panel--pos-top-center,
    .vsp-panel--pos-center-center,
    .vsp-panel--pos-bottom-center {
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 27px 27px 0 0 !important;
        transform: translateY(34px) scale(0.985) !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding: 24px 24px 20px !important;
    }

    .vsp-panel--active {
        transform: translateY(0) scale(1) !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .vsp--fast-panel-enter .vsp-panel--active {
        transition-duration: var(--vsp-fast-panel-enter-duration);
    }

    /* Panel: flex-col on mobile */
    .vsp-panel {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Header: flex-row — icon + headline side by side */
    .vsp-panel__header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .vsp-panel__icon {
        grid-column: unset !important;
        grid-row: unset !important;
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
        align-self: center !important;
    }

    .vsp-panel__headline {
        grid-column: unset !important;
        grid-row: unset !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        font-size: clamp(19px, 21px, 23px) !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .vsp-panel__body {
        grid-column: unset !important;
        grid-row: unset !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        max-width: none !important;
    }

    .vsp-panel__desc {
        font-size: 14px !important;
    }

    .vsp-panel__actions {
        margin-top: 0;
    }

    .vsp-panel__link,
    .vsp-panel__link:visited,
    .vsp-panel__link:hover,
    .vsp-panel__link:focus-visible,
    .vsp-panel__link:active {
        color: #FD0 !important;
        text-decoration: none !important;
    }

    .vsp-scroll-actions {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin: 16px auto 0;
    }

    .vsp-scroll-btn {
        display: block !important;
    }

    .vsp-scroll-btn--up img {
        transform: rotate(180deg);
    }

    /* Scroll-down button */
    .vsp-scroll-btn {
        display: block;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
        transition: background-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 0.15s ease;
    }

    .vsp-scroll-btn:active {
        transform: scale(0.92);
    }

    .vsp-scroll-btn img {
        width: 40px;
        height: 40px;
        display: block;
    }

    .vsp-scroll-btn .vsp-scroll-lottie {
        display: block;
        width: 52px;
        height: 74px;
    }

    .vsp-scroll-btn--lottie {
        width: 52px;
        height: 74px;
    }
}

@media (min-width: 1025px) {
    .vsp-panel__story-trigger,
    .vsp-panel__link {
        font-weight: var(--font-weight-bold);
        font-size: 22px;
        line-height: 1;
        letter-spacing: 0;
    }
}
