.voelkl-timeline-1922-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    font-family: inherit;
}

.voelkl-timeline-1922-line {
    position: absolute;
    width: 4px; /* default, overridden by Elementor controls */
    background-color: #EF7D00;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.voelkl-timeline-1922-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    opacity: 0; /* For animation */
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.voelkl-timeline-1922-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.voelkl-timeline-1922-item.left {
    left: 0;
}

.voelkl-timeline-1922-item.right {
    left: 50%;
}

.voelkl-timeline-1922-marker {
    position: absolute;
    width: 20px; /* default */
    height: 20px; /* default */
    background-color: #EF7D00;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

/* FIX: Forget the transforms. Just pin them to the absolute center of the timeline container using calc(). */
.voelkl-timeline-1922-item.left .voelkl-timeline-1922-marker {
    right: auto !important; /* Reset Elementor defaults if any */
    left: 100% !important; /* Pin to the right edge of the left 50% block (which is the center of the timeline) */
    transform: translateX(-50%) !important; /* Pull back by exactly half its own width */
    margin: 0 !important;
}

.voelkl-timeline-1922-item.right .voelkl-timeline-1922-marker {
    right: auto !important;
    left: 0 !important; /* Pin to the left edge of the right 50% block (which is the center of the timeline) */
    transform: translateX(-50%) !important; /* Pull back by exactly half its own width */
    margin: 0 !important;
}


.voelkl-timeline-1922-content {
    padding: 20px 30px; /* default */
    background-color: rgba(60,60,59,0.6);
    position: relative;
    border-radius: 8px; /* default */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* default, overridden by Elementor controls */
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
	width: 100%;
}


/* Handling text-alignment mappings from Elementor settings to flex-alignment */
.voelkl-timeline-1922-item .voelkl-timeline-1922-content[style*="text-align: left;"] { align-items: flex-start; }
.voelkl-timeline-1922-item .voelkl-timeline-1922-content[style*="text-align: center;"] { align-items: center; }
.voelkl-timeline-1922-item .voelkl-timeline-1922-content[style*="text-align: right;"] { align-items: flex-end; }


.voelkl-timeline-1922-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.voelkl-timeline-1922-date {
    font-size: 0.9em;
    opacity: 0.8;
    margin-bottom: 5px;
    font-weight: bold;
}

.voelkl-timeline-1922-title {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: bold;
}

.voelkl-timeline-1922-desc {
    font-size: 1em;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .voelkl-timeline-1922-line {
        left: 20px;
        transform: none;
		margin-left: 0 !important;
    }

    .voelkl-timeline-1922-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .voelkl-timeline-1922-item.left, 
    .voelkl-timeline-1922-item.right {
        left: 0;
    }

    /* Standard mobile overrides for marker position */
    .voelkl-timeline-1922-item.left .voelkl-timeline-1922-marker, 
    .voelkl-timeline-1922-item.right .voelkl-timeline-1922-marker {
        left: 20px !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        margin: 0 !important;
    }
}
