.ts-wrap {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 80px 60px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Slider Content - 70% rechts */
.ts-slider {
    position: relative !important;
    width: 70% !important;
    max-width: 900px !important;
}

/* Slides Container */
.ts-slides {
    position: relative !important;
}

/* Einzelnes Slide - Weicher Crossfade */
.ts-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.6s ease-in-out !important;
}

.ts-slide.active {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2 !important;
}

.ts-slide.fade-out {
    position: absolute !important;
    opacity: 0 !important;
    z-index: 1 !important;
}

/* Zitat Text */
.ts-quote {
    font-family: inherit !important;
    font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #0f1317 !important;
    margin: 0 0 40px 0 !important;
    text-indent: 4em !important;
}

.ts-quote::before {
    content: "“" !important;
}

.ts-quote::after {
    content: "”" !important;
}

/* Footer mit Pfeilen und Autor */
.ts-footer {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 100% !important;
}

/* Navigation Pfeile */
.ts-nav {
    display: flex !important;
    gap: 8px !important;
}

.ts-nav-btn {
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: 1px solid #0f1317 !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease, color 0.3s ease !important;
    padding: 0 !important;
}

.ts-nav-btn:hover {
    background: #0f1317 !important;
}

.ts-nav-btn:hover .ts-arrow {
    stroke: #f4f7f8 !important;
}

.ts-arrow {
    width: 20px !important;
    height: 20px !important;
    stroke: #0f1317 !important;
    stroke-width: 1.5 !important;
    fill: none !important;
    transition: stroke 0.3s ease !important;
}

/* Autor Info */
.ts-author {
    text-align: right !important;
}

.ts-author-name {
    font-family: inherit !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #0f1317 !important;
    margin: 0 0 4px 0 !important;
}

.ts-author-title {
    font-family: inherit !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    color: #0f1317 !important;
    opacity: 0.7 !important;
    margin: 0 !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .ts-wrap {
        padding: 60px 40px !important;
        justify-content: flex-start !important;
    }

    .ts-slider {
        width: 100% !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .ts-wrap {
        padding: 60px 24px !important;
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .ts-slider {
        width: 100% !important;
    }

    .ts-quote {
        font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
        margin-bottom: 20px !important;
        text-indent: 1.5em !important;
    }


    .ts-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
    }

    .ts-author {
        order: -1 !important;
        text-align: left !important;
    }

    .ts-nav {
        order: 1 !important;
    }
}