/* ── Slider E13 v1.6 ── */

.e13-slider-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.e13-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    cursor: none;
}

.e13-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.e13-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.e13-slide-inner {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.e13-slide img,
.e13-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* ── Slider-Cursor (Pfeil, kein Kreis) ── */
.e13-cursor {
    position: absolute;
    width: 72px;
    height: 54px;
    margin-left: -36px;
    margin-top: -27px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.e13-cursor.visible {
    opacity: 1;
}

/* ── Globalen Custom Cursor (Dot) im Slider ausblenden ── */
body.e13-slider-active #lht-cursor-dot {
    opacity: 0 !important;
    transition: none !important;
}

/* ── Caption ── */
.e13-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.4;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    z-index: 10;
}

/* ── Dots ── */
.e13-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.e13-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    outline: none;
}

.e13-dot.active {
    background: #fff;
    transform: scale(1.3);
}

@media (pointer: coarse) {
    .e13-slider { cursor: default; }
    .e13-cursor { display: none !important; }
}
