/* Container */
.timeline-masonry-container-22483e8b {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 100px 0;
    overflow: hidden;
}

/* Masonry Layout (Desktop) */
.timeline-masonry-22483e8b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; 
    position: relative;
}

/* Center Axis Line (Desktop) */
.timeline-masonry-22483e8b::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e5e5e5;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* Cards (Desktop) */
.timeline-card-22483e8b {
    position: relative;
    width: 100%;
}

/* Markers (Dots) on Axis */
.timeline-marker-22483e8b {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #69727d;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-card-left-22483e8b .timeline-marker-22483e8b {
    right: -30px; 
}

.timeline-card-right-22483e8b .timeline-marker-22483e8b {
    left: -30px; 
}

/* Alternating Placement Logic */
.timeline-card-left-22483e8b {
    grid-column: 1 / 2;
}
.timeline-card-right-22483e8b {
    grid-column: 2 / 3;
    /* Move odd items down on desktop */
    margin-top: 60px;
}

/* Content Box */
.timeline-content-22483e8b {
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.timeline-content-22483e8b:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Add margin to pull content away from center axis */
.timeline-card-left-22483e8b .timeline-content-22483e8b {
    margin-right: 20px;
}

.timeline-card-right-22483e8b .timeline-content-22483e8b {
    margin-left: 20px;
}

/* Image */
.timeline-image-22483e8b img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
    object-fit: cover;
}

/* Link Wrapper */
.timeline-link-wrapper-22483e8b {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Typography */
.timeline-date-22483e8b {
    font-size: 0.9em;
    color: #a4afb7;
    margin-bottom: 5px;
    font-weight: 500;
}

.timeline-headline-22483e8b {
    margin: 0 0 10px;
    font-size: 1.4em;
    color: #333;
}

.timeline-text-22483e8b {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Tablet & Mobile View (Single Column) */
@media screen and (max-width: 1024px) {
    /* Reset layout */
    .timeline-masonry-22483e8b {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Disable all transforms on mobile/tablet */
    .timeline-card-22483e8b {
        transform: none !important;
        margin-top: 0 !important;
    }
    
    .timeline-masonry-22483e8b::before {
        display: none;
    }
    
    /* Place markers above the cards */
    .timeline-marker-22483e8b {
        position: relative;
        left: 0 !important;
        right: auto !important;
        top: 0;
        margin-bottom: -10px;
        margin-left: 20px;
        z-index: 3;
    }

    /* Reset content margins */
    .timeline-card-left-22483e8b .timeline-content-22483e8b,
    .timeline-card-right-22483e8b .timeline-content-22483e8b {
        margin: 0;
    }
}