.narrative-gallery-preview {
    display: flex;
}

.narrative-gallery-preview img {
    cursor: pointer;
}

.narrative-gallery-open {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.narrative-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.narrative-lightbox-content {
    display: flex;
    overflow: hidden;
}

.narrative-lightbox-item {
    min-width: 100%;
    transition: transform 0.5s ease;
    text-align: center;
    color: white;
}

.narrative-prev, .narrative-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
    transition: 0.6s ease;
}

.narrative-prev {
    left: 0;
}

.narrative-next {
    right: 0;
}
