/* Minimal local Fancybox-compatible lightbox for Berg der Schande. */
.fancybox__container {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
    padding: 30px;
    box-sizing: border-box;
}
.fancybox__container.is-open {
    display: flex;
}
.fancybox__backdrop {
    position: absolute;
    inset: 0;
}
.fancybox__content {
    position: relative;
    z-index: 1;
    max-width: 96vw;
    max-height: 92vh;
    text-align: center;
}
.fancybox__image {
    display: block;
    max-width: 96vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #fff;
}
.fancybox__caption {
    color: #fff;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
}
.fancybox__button {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
}
.fancybox__button:hover,
.fancybox__button:focus {
    background: rgba(255, 255, 255, 0.32);
    outline: none;
}
.fancybox__button--close {
    top: 18px;
    right: 18px;
}
.fancybox__button--prev,
.fancybox__button--next {
    top: 50%;
    transform: translateY(-50%);
}
.fancybox__button--prev {
    left: 18px;
}
.fancybox__button--next {
    right: 18px;
}
@media (max-width: 767px) {
    .fancybox__container { padding: 12px; }
    .fancybox__image { max-width: 96vw; max-height: 76vh; }
    .fancybox__button--prev { left: 8px; }
    .fancybox__button--next { right: 8px; }
    .fancybox__button--close { top: 8px; right: 8px; }
}
