/* Lightbox fuer .content-figure img (News-Artikel, statische Seiten, migrierte Inhalte) */

.content-figure img { cursor: zoom-in; }

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,13,13,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
    z-index: 9999;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.lightbox-caption {
    color: #f0f0f0;
    font-family: 'Barlow', sans-serif;
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 92vw;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    color: #ff8000;
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 6px 12px;
}

.lightbox-close:hover { color: #e67200; }
