.timeline-slider-container {
    width: 100%;
    overflow-x: auto;
    padding: 30px 0;
}

.timeline-slider {
    display: flex;
    position: relative;
    min-width: 100%;
    padding-bottom: 180px; /* Raum für Karten unterhalb der Zeitleiste */
    padding-top: 180px; /* Raum für Karten oberhalb der Zeitleiste */
}

.timeline-slider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 180px; /* Angepasst für die neue Position der Zeitleiste */
    height: 2px;
    background-color: #ccc;
    z-index: 1;
}

.timeline-item {
    flex: 0 0 auto;
    width: 280px; /* Erhöht, um mehr Platz zu bieten */
    padding: 0 15px;
    position: relative;
}

.timeline-item-top {
    margin-top: -160px; /* Verschiebt die Elemente nach oben */
}

.timeline-item-bottom {
    margin-top: 40px; /* Verschiebt die Elemente nach unten */
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0033a0;
    position: absolute;
    top: 172px; /* Angepasst an die neue Position der Zeitleiste */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-year {
    font-size: 28px;
    font-weight: bold;
    color: #0033a0;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: 140px; /* Positioniert über dem Punkt */
}

.timeline-content {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 250px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #0033a0;
    padding-right: 30px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-description {
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-expand {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #0033a0;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
}

.timeline-expand.active {
    transform: rotate(180deg);
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
    .timeline-item {
        width: 240px;
    }
    
    .timeline-year {
        font-size: 24px;
    }
}

.timeline-expand.active {
    transform: rotate(180deg);
}

.timeline-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
    .timeline-item {
        width: 200px;
    }
    
    .timeline-year {
        font-size: 24px;
    }
}