.strip {
    height: 75%;
    background: #000000;
}

.scroll-hint {
    position: absolute;
    right: 1rem;
    top: calc(25% - 1rem);

    transform: translateY(-100%);

    font-size: 1rem;
    color: #333333;
    pointer-events: none;

    opacity: 1;
    transition: opacity 0.3s ease;
}

.scroll-hint.hidden {
    opacity: 0;
}

.text-panel {
    width: 90%;
    height: 25%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.text-panel p {
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

.text-panel p + p {
    margin-top: 3rem;
}

.mobile-text-panel {
    display: none;
}

.image-panel {
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-object {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-object img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 90%;
    display: block;
}

.image-caption {
    display: none;
}

.fixed-spacer {
    width: 15%;
    height: 100%;
    flex-shrink: 0;
}

.caption {
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #333333;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.caption.visible {
    opacity: 1;
}

@media (max-width: 800px) {
    .stage {
        height: calc(100vh - 7.25rem);
        height: calc(100dvh - 7.25rem);
        display: block;
    }

    .stage > .text-panel {
        display: none;
    }

    .strip {
        height: 100%;
        scroll-snap-type: x mandatory;
    }


    .opening-spacer {
        display: none;
    }

    .mobile-text-panel {
        display: flex;
        flex-direction: column;        
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        padding: 2rem 1.25rem 4rem 1.25rem;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-align: center;
        background: #fbf7ef;
        color: #333333;
    }

    .mobile-text-panel p {
        width: 80%;
        max-width: 32rem;
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.55;
    }

    .mobile-text-panel p + p {
        margin-top: 1rem;
    }

    .image-panel {
        width: 100%;
        height: 100%;
        padding: 1rem;
        scroll-snap-align: center;
    }

    .image-object {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .image-object img {
        max-width: 100%;
        max-height: calc(100% - 4.5rem);
        width: auto;
        height: auto;
    }

    .image-caption {
        display: block;
        margin-top: 1rem;
        font-size: 0.9rem;
        line-height: 1.35;
        text-align: center;
        color: #fbf7ef;
    }

    .fixed-spacer {
        width: 1rem;
        min-width: 1rem;
    }

    .sidebar .caption {
        display: none;
    }

    .scroll-hint {
        right: 1rem;
        bottom: 1rem;
        top: auto;
        transform: none;
        font-size: 0.9rem;
    }
}
