/* ============================================ */
/* SLIT SLIDER STYLES - CLEAR & SHARP */
/* ============================================ */

.slit-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #0f172a;
}

.slit-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.slit-slide.current {
    visibility: visible;
    z-index: 2;
}

/* Slit Halves */
.slit-half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slit-half-left { left: 0; }
.slit-half-right { right: 0; }

.slit-img {
    position: absolute;
    top: 0;
    width: 200%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Make image sharp */
    image-rendering: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.slit-half-left .slit-img { left: 0; }
.slit-half-right .slit-img { right: 0; }

/* Slide Content - Clear Text */
.slit-slide-content {
    pointer-events: none;
    z-index: 20;
}

.slit-slide-content > div {
    pointer-events: all;
}

.slit-slide-content .slide-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--wz-blue-400, #60A5FA);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.slit-slide-content .slide-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.slit-slide-content .slide-desc {
    font-size: 1.15rem;
    color: #E2E8F0;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Overlay - Much lighter for clear image */
.slit-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    /* Left side darker for text, right side lighter for image */
    background: linear-gradient(to right, 
        rgba(0,0,0,0.65) 0%, 
        rgba(0,0,0,0.45) 40%, 
        rgba(0,0,0,0.2) 65%, 
        rgba(0,0,0,0.05) 100%
    );
}

/* Author Image Card - Sharp */
.slide-author .author-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255,255,255,0.25);
}

.slide-author .author-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Author Name Tag - Clean */
.slide-author .author-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FFFFFF;
    padding: 14px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-author .author-tag .name {
    font-weight: 700;
    color: #111827;
    font-size: 15px;
    line-height: 1.2;
}

.slide-author .author-tag .title {
    color: #6B7280;
    font-size: 12px;
    line-height: 1.2;
}

/* Navigation Dots */
.slit-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.slit-nav span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slit-nav span.active {
    background: #FFFFFF;
    width: 28px;
    border-radius: 5px;
}

/* Navigation Arrows */
.slit-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slit-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slit-arrows button:hover {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-author {
        display: none;
    }
    
    .slit-overlay {
        background: rgba(0,0,0,0.5);
    }
}

@media (max-width: 768px) {
    .slit-slide-content .slide-heading {
        font-size: 2rem;
    }
    
    .slit-slide-content .slide-desc {
        font-size: 1rem;
    }
    
    .slit-arrows button {
        width: 40px;
        height: 40px;
    }
    
    .slit-arrows {
        padding: 0 8px;
    }
}