    .left-slider {
        position: relative;
        overflow: hidden;
        border-radius: 0px;
        background: #f0f0f0;
        width: 100%;
        height: 180px;
        min-height: 180px;
        margin-top: 10px;
    }

    .left-slider .slider-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .left-slider .slider-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 100%;
        width: 100%;
    }

    .left-slider .slide-item {
        flex: 0 0 100%;
        position: relative;
        cursor: pointer;
        height: 100%;
        min-height: 180px;
    }

    .left-slider .slide-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .left-slider .slide-item .slide-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 16px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        z-index: 2;
    }

    .left-slider .slide-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
        border-radius: 8px;
    }

    .left-slider .slider-btn {
        display: none !important;
    }

    .left-slider .slider-dots {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 5px;
        background: rgba(0, 0, 0, 0.75);
        padding: 5px 12px;
        margin: 0;
        line-height: 1;
        border-radius: 0;
    }

    .left-slider .slider-dots span {
        display: inline-block;
        width: 16px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.35);
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .left-slider .slider-dots span.active {
        background: #ffffff;
        width: 24px;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    }

    .left-slider .slider-dots span:hover {
        background: rgba(255, 255, 255, 0.7);
    }

    @media (max-width: 768px) {
        .left-slider {
            height: 140px;
            min-height: 140px;
        }
        .left-slider .slide-item .slide-caption {
            font-size: 12px;
            padding: 8px 12px;
        }
        .left-slider .slider-dots {
            padding: 4px 10px;
            gap: 4px;
        }
        .left-slider .slider-dots span {
            width: 12px;
            height: 2px;
        }
        .left-slider .slider-dots span.active {
            width: 18px;
        }
    }