/* ── Bild im Termin anklickbar machen ── */
.skb-termin__text img {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}
.skb-termin__text img:hover {
    opacity: 0.85;
}

/* ── Lightbox Overlay ── */
.skb-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 20px;
    box-sizing: border-box;
}
.skb-lightbox-overlay.is-open {
    display: flex;
}
.skb-lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    animation: skb-zoom-in 0.2s ease;
}
.skb-lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    z-index: 100000;
}
.skb-lightbox-caption {
    position: fixed;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes skb-zoom-in {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.skb-lightbox-spinner {
    font-size: 2.5rem;
    animation: skb-spin 1s linear infinite;
    color: #fff;
}

@keyframes skb-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.skb-spinner-ring {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: skb-spin 0.8s linear infinite;
}

@keyframes skb-spin {
    to { transform: rotate(360deg); }
}