.tl-99153182-wrapper {
    position: relative;
    width: 100%;
}

.tl-99153182-viewport {
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    padding: 20px 0;
}

.tl-99153182-viewport::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tl-99153182-viewport:active {
    cursor: grabbing;
}

.tl-99153182-track {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.tl-99153182-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.tl-99153182-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.tl-99153182-item.tl-99153182-left {
    left: 0;
    text-align: right;
}

.tl-99153182-item.tl-99153182-right {
    left: 50%;
    text-align: left;
}

.tl-99153182-marker {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3b82f6;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #e2e8f0;
    z-index: 2;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.tl-99153182-item:hover .tl-99153182-marker {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.tl-99153182-left .tl-99153182-marker {
    right: -10px;
}

.tl-99153182-right .tl-99153182-marker {
    left: -10px;
}

.tl-99153182-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

.tl-99153182-item:hover .tl-99153182-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tl-99153182-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.tl-99153182-left .tl-99153182-meta {
    justify-content: flex-end;
}

.tl-99153182-title {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.tl-99153182-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.tl-99153182-image-wrap {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.tl-99153182-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tl-99153182-card:hover .tl-99153182-img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .tl-99153182-track::before {
        left: 20px;
    }
    
    .tl-99153182-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }
    
    .tl-99153182-item.tl-99153182-left,
    .tl-99153182-item.tl-99153182-right {
        left: 0;
        text-align: left;
    }
    
    .tl-99153182-left .tl-99153182-marker,
    .tl-99153182-right .tl-99153182-marker {
        left: 10px;
        right: auto;
    }
    
    .tl-99153182-left .tl-99153182-meta {
        justify-content: flex-start;
    }
}