.ts-container {
    background-color: #fdfaf0;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    font-family: sans-serif;
}

.ts-slides-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.ts-slides-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ts-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.ts-slide-content {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ts-image-col {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.ts-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-time-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #7c984a;
    font-weight: 600;
    color: #7c984a;
}
.ts-time-badge i, .ts-time-badge svg {
    color: #e3a92b;
    fill: #e3a92b;
    width: 16px;
    height: 16px;
}


.ts-text-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ts-small-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ts-dot {
    width: 10px;
    height: 10px;
    background: #d8c267;
    border-radius: 50%;
    display: inline-block;
}

.ts-main-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #000;
    line-height: 1.2;
}

.ts-desc {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Timeline Nav */
.ts-timeline-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.ts-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d8c267;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.2s;
    padding: 0;
}

.ts-nav-arrow svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    display: block;
}

.ts-nav-arrow:hover {
    transform: scale(1.1);
}

.ts-timeline-track-container {
    flex: 1;
    position: relative;
    margin: 0 20px;
}

.ts-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #d8c267;
    transform: translateY(-50%);
    z-index: 1;
}

.ts-timeline-points {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.ts-timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.ts-nav-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #7c984a;
    transition: all 0.3s;
}

.ts-nav-circle.active {
    background: #7c984a;
    border-color: #7c984a;
}

.ts-nav-time {
    font-size: 14px;
    font-weight: 700;
    color: #7c984a;
}

@media (max-width: 768px) {
    .ts-slide-content {
        flex-direction: column;
    }
    .ts-image-col {
        min-height: 200px;
    }
}