/* Waagrechte Linie */
.timeline-line .line {
    height: 4px;
    background-color: #d4403a;
    position: absolute;
    top: 10px; /* Linie leicht nach unten verschoben, Punkt sitzt darauf */
    left: 0;
    width: 100%;
    z-index: 0;
}

/* Timeline-Infobox */
.timeline-item {
    position: relative;
    z-index: 1;
    border-radius: 0.5rem;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Punkt auf der Linie */
.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #d4403a;
    border-radius: 50%;
    position: absolute;
    top: -10px; /* halb Punkt nach oben, damit Zentrum auf Linie liegt */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Datum */
.timeline-date {
    margin-top: 10px; /* Abstand nach Punkt */
}

/* Titel & Teaser */
.timeline-title {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.timeline-teaser {
    font-size: 0.9rem;
}

.timeline-item p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.25rem ;
}