.strip {
    padding-top: 1rem;
    height: 95%;
    visibility: hidden;
}

.scroll-hint {
    position: absolute;
    right: 1rem;
    top: calc(1rem + 95%);
    transform: translateY(-100%);

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

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

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

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

.image-object {
    position: relative;
    display: inline-block;
}

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

.image-caption {
    position: absolute;
    left: calc(100% + 2rem);
    bottom: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #333333;
    min-width: 12rem;
}

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

.first-spacer {
    width: var(--first-spacer-width, 0px);
    height: 100%;
    flex-shrink: 0;
}

.end-spacer {
    width: var(--end-spacer-width, 0px);
    height: 100%;
    flex-shrink: 0;
}


@media (max-width: 800px) {
    .strip {
        height: 100%;
        padding-top: 0;
        scroll-snap-type: x mandatory;
    }

    .image-panel {
        width: 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 {
        position: static;
        min-width: 0;
        margin-top: 1rem;
        font-size: 0.9rem;
        line-height: 1.35;
        text-align: center;
    }

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

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