/* Vertical Work Timeline Structure & CSS styles - 920638a9 */

.work-timeline-container-920638a9 {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* CSS Variables for Responsive Controls */
    --dot-width-920638a9: 40px;
    --card-margin-920638a9: 24px;
}

/* Vertical connecting line - perfectly centered inside the dot column area */
.timeline-line-920638a9 {
    position: absolute;
    left: calc(var(--dot-width-920638a9) / 2);
    top: 20px;
    bottom: 20px;
    z-index: 1;
    transform: translateX(-50%);
}

/* Individual timeline row item */
.timeline-item-920638a9 {
    display: flex;
    align-items: flex-start; /* Aligns to top of card so line connector spans correctly */
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Column 1: Dot column area */
.timeline-dot-col-920638a9 {
    width: var(--dot-width-920638a9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 24px; /* Perfectly aligned to the top content area of the card */
}

/* Outer Ring dot */
.timeline-dot-920638a9 {
    border: 2px solid #cbd5e1;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
    z-index: 3;
}

/* Inner colored dot */
.timeline-dot-inner-920638a9 {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
}

/* Active Step Override */
.timeline-item-920638a9.active-step-920638a9 .timeline-dot-920638a9 {
    border-width: 2px;
}

/* Right portion: Custom Card Wrapper with custom margins */
.timeline-card-wrapper-920638a9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: var(--card-margin-920638a9);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.timeline-card-content-920638a9 {
    flex-grow: 1;
}

/* Year text inside the card */
.timeline-year-text-920638a9 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

/* Core typography defaults for custom look */
.timeline-company-920638a9 {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.timeline-position-920638a9 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.timeline-description-920638a9 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .timeline-company-920638a9 {
        font-size: 18px;
    }
    
    .timeline-position-920638a9 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .timeline-description-920638a9 {
        font-size: 13px;
    }
}
