.tl-timeline-wrapper-c0764c6d {
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
    font-family: inherit;
}

.tl-timeline-track {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.tl-timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.tl-milestone-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.tl-milestone-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--item-color);
    color: var(--item-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.tl-connecting-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--line-color);
    transform: translateY(-50%);
    z-index: 1;
}

.tl-milestone-body {
    width: 100%;
    max-width: 250px;
}

.tl-milestone-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tl-timeline-track {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .tl-timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        padding: 0 0 30px 0;
    }

    .tl-milestone-header {
        width: auto;
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .tl-connecting-line {
        top: 50px;
        left: 50%;
        width: 2px;
        height: calc(100% + 10px);
        transform: translateX(-50%);
    }

    .tl-milestone-body {
        max-width: 100%;
        padding-top: 12px;
    }
}
