
/* ========================================= */
/*  Lightbox                                  */
/* ========================================= */

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox.visible {
    display: flex !important;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

#lightbox-close {
    top: 20px;
    right: 30px;
}

#lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================= */
/*  Block 3 – Aktuelles + Galerie              */
/* ========================================= */

/* .block3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-block);
} */

.aktuelles-box,
.galerie-box {
    background: var(--box-bg);
    border: 1px solid var(--box-border);
    border-radius: var(--radius);
    padding: var(--box-padding);
}

#slideshow-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translateX(-50%);
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}