/* ========== TIMELINE STYLES ========== */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline-container:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
}

.timeline-year {
    position: relative;
    margin: 40px 0 20px 0;
    padding-left: 80px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.timeline-year:before {
    content: '';
    position: absolute;
    left: 44px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 80px;
}

.timeline-dot {
    position: absolute;
    left: 46px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 3px #3498db;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.timeline-content h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.timeline-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-read-more:hover {
    text-decoration: underline;
}

/* ========== KATEGORIEN LISTE ========== */
.kategorien-liste {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.kategorien-liste h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.kategorien-liste ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kategorien-liste li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.kategorien-liste li:last-child {
    border-bottom: none;
}

.kategorien-liste a {
    display: flex;
    justify-content: space-between;
    color: #2c3e50;
    text-decoration: none;
    padding: 8px 0;
}

.kategorien-liste a:hover {
    color: #3498db;
}

.kategorien-liste .count {
    background: #3498db;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .timeline-container:before {
        left: 30px;
    }
    
    .timeline-year,
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year:before {
        left: 24px;
    }
    
    .timeline-dot {
        left: 26px;
    }
}
