.reverse {
    unicode-bidi: bidi-override;
    direction: rtl;
}

/* Bilder im Blogartikel */
article.blog-post img {
    max-height: 260px !important;
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 1rem 0;
    cursor: zoom-in;
}

/* Overlay */
#image-lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    inset: 0;

    background: rgba(0, 0, 0, 0.88);

    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;

    cursor: zoom-out;
}

#image-lightbox.is-open {
    display: flex;
}

/* Großes Bild */
#image-lightbox img {
    max-width: 95vw !important;
    max-height: 95vh !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    object-fit: contain;

    cursor: zoom-out;
}
