.angie-tl-wrapper-491d304f {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 20px 0;
}

.angie-tl-line-491d304f {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e5e7eb;
    transform: translateX(-50%);
    z-index: 1;
}

.angie-tl-items-491d304f {
    display: flex;
    flex-direction: column;
    position: relative;
}

.angie-tl-item-491d304f {
    position: relative;
    width: 50%;
    /* Use margin for vertical spacing instead of padding to avoid alignment conflicts */
    margin: 20px 0; 
    padding: 0 40px; 
    box-sizing: border-box;
    z-index: 2;
    display: flex;
    flex-direction: row; /* Horizontal layout for node and content */
}

/* Specific margins for first and last to align line correctly */
.angie-tl-item-491d304f:first-child {
    margin-top: 0 !important;
}
.angie-tl-item-491d304f:last-child {
    margin-bottom: 0;
}

/* Odd items (Left) */
.angie-tl-item-491d304f:nth-child(odd) {
    left: 0;
    flex-direction: row-reverse; /* Content then node container */
}

/* Even items (Right) */
.angie-tl-item-491d304f:nth-child(even) {
    left: 50%;
    flex-direction: row; /* Node container then content */
}

/* Node Container handles the vertical positioning of the dot relative to the item */
.angie-tl-node-container-491d304f {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Always align dot to top of container initially */
    position: relative;
    width: 0; /* take no horizontal space */
}

/* Content Wrapper handles the vertical alignment of the text block */
.angie-tl-content-wrapper-491d304f {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Base alignment, overridden by setting */
    flex-grow: 1;
    min-height: 100%;
}

.angie-tl-content-491d304f {
    width: 100%;
}

/* Text alignment within content block */
.angie-tl-item-491d304f:nth-child(odd) .angie-tl-content-491d304f {
    text-align: right;
}
.angie-tl-item-491d304f:nth-child(even) .angie-tl-content-491d304f {
    text-align: left;
}


/* Nodes */
.angie-tl-node-491d304f {
    position: absolute;
    top: 0; /* Aligned exactly at top of item */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4275FA;
    z-index: 3;
}

/* Odd node positioning (moves dot to center line) */
.angie-tl-item-491d304f:nth-child(odd) .angie-tl-node-491d304f {
    right: -46px; /* -40px padding - 6px half width */
}

/* Even node positioning (moves dot to center line) */
.angie-tl-item-491d304f:nth-child(even) .angie-tl-node-491d304f {
    left: -46px; /* -40px padding - 6px half width */
}

/* Typography */
.angie-tl-year-491d304f {
    font-size: 28px;
    font-weight: bold;
    color: #4275FA;
    margin-bottom: 5px; 
    line-height: 1; 
}

.angie-tl-heading-491d304f {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px; 
}

.angie-tl-desc-491d304f {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

/* Responsive (Tablet & Mobile) */
@media (max-width: 1024px) {
    .angie-tl-wrapper-491d304f {
        padding: 20px;
    }

    .angie-tl-line-491d304f {
        left: 30px;
    }

    .angie-tl-item-491d304f {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        padding-right: 0;
        flex-direction: row !important; /* Force row layout for mobile */
    }

    .angie-tl-item-491d304f .angie-tl-content-491d304f {
        text-align: left !important;
    }

    .angie-tl-node-491d304f {
        left: -46px !important; /* Align dot with line */
        right: auto !important;
    }
}
