.article-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(6, 10, 18, 0.88);
    cursor: zoom-out;
}

.article-lightbox.is-open {
    display: flex;
}

.article-lightbox__inner {
    position: relative;
    max-width: min(96vw, 1200px);
    max-height: 92vh;
    cursor: default;
}

.article-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    object-fit: contain;
    background: #0f1724;
}

.article-lightbox__caption {
    margin: 0.75rem 0 0;
    text-align: center;
    color: #c5d2e4;
    font-size: 0.95rem;
    line-height: 1.4;
}

.article-lightbox__close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: #1d2a3d;
    color: #e8eef5;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.article-lightbox__close:hover {
    background: #2a3b55;
}

.article-content--html img,
.article-cover.is-zoomable {
    cursor: zoom-in;
}

body.article-lightbox-open {
    overflow: hidden;
}
