#timeline {
    width: 100%;
}

#timeline .slick-list {
    overflow: visible;
}

#timeline .tl_year_entry {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: flex-start;
}

#timeline .tl_point {
    padding: 2px 0;
    width: max-content;
    width: 100%;
    position: relative;
}

#timeline .tl_point:not(.last)::before {
    content: "";
    display: block;
    height: 2px;
    width: calc(100% + 16px);
    background-color: var(--minuba-primary-100);
    position: absolute;
    top: 13px;
    left: 12px;
}

#timeline .tl_dot {
    padding: 6px;
    height: 24px;
    width: 24px;
    border-radius: 24px;
    background-color: var(--minuba-primary-100);
    position: relative;
}

#timeline .tl_dot::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    background-color: var(--minuba-primary-regular);
}

#timeline .tl_milestone {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#timeline .tl_milestone .cta_tertiary {
    justify-content: flex-start;
}

@media screen and (min-width: 768px) {
    .tl_year_entry {
        max-width: 350px;
    }

    #timeline .tl_point:not(.last)::before {
        width: calc(100% + 30px);
    }
}