.timeline-container-wrapper-356aa47e {
    position: relative;
    width: 100%;
    margin: 40px auto;
    font-family: inherit;
    padding: 20px 0;
}

/* Timeline Vertical Inner Track with Line */
.timeline-inner-356aa47e {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px; /* Widened timeline container to give cards maximum possible room */
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line-356aa47e {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #004c3f;
    top: 0;
    z-index: 1;
}

/* Single Vertical Event Node */
.timeline-event-node-356aa47e {
    position: relative;
    width: 100%;
    margin: 40px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
}

/* Alternate positions */
.timeline-event-node-356aa47e.position-left-356aa47e {
    justify-content: flex-start;
}

.timeline-event-node-356aa47e.position-right-356aa47e {
    justify-content: flex-end;
}

/* Circular Center Marker */
.timeline-marker-356aa47e {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #004c3f;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.timeline-event-node-356aa47e:hover .timeline-marker-356aa47e {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 15px rgba(0,76,63,0.3);
}

.timeline-marker-year-356aa47e {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

/* Content wrapper that takes up proper width */
.timeline-card-wrapper-356aa47e {
    width: 46%; /* Widened cards on desktop to prevent squeezed layout */
    display: flex;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.position-left-356aa47e .timeline-card-wrapper-356aa47e {
    padding-right: 40px;
    text-align: right;
}

.position-right-356aa47e .timeline-card-wrapper-356aa47e {
    padding-left: 40px;
    text-align: left;
}

/* Elegant Cards */
.timeline-card-356aa47e {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px; /* Spacious internal padding */
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.timeline-event-node-356aa47e:hover .timeline-card-356aa47e {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Specific #001A72 Blue color for year/date */
.timeline-card-year-356aa47e {
    font-weight: 800;
    color: #001A72; /* Requested custom color */
    font-size: 22px;
    margin-bottom: 8px;
}

.timeline-card-title-356aa47e {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.timeline-card-desc-356aa47e {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsiveness */
@media (max-width: 768px) {
    .timeline-line-356aa47e {
        left: 30px;
    }
    
    .timeline-event-node-356aa47e {
        margin: 30px 0;
        justify-content: flex-start !important;
    }
    
    .timeline-marker-356aa47e {
        left: 30px;
        transform: translateY(-50%);
    }
    
    .timeline-event-node-356aa47e:hover .timeline-marker-356aa47e {
        transform: translateY(-50%) scale(1.1);
    }
    
    .timeline-card-wrapper-356aa47e {
        width: 100%;
        padding-left: 80px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
}
