/* timeline.css - 타임라인 전용 스타일 */

.timeline-container { 
    max-width: 900px; 
    margin: 0 auto; 
    font-family: 'Noto Sans KR', sans-serif; 
    padding: 20px;
}

/* 상단 연대 탭 스타일 */
.timeline-tabs { 
    display: flex; 
    list-style: none; 
    padding: 0; 
    border-bottom: 2px solid #e0e0e0; 
    margin-bottom: 40px; 
}
.timeline-tabs li { 
    padding: 10px 20px; 
    color: #888; 
    font-size: 18px;
    cursor: pointer; 
}
.timeline-tabs li.active { 
    border-bottom: 2px solid #5a8bce; 
    color: #333; 
    font-weight: bold; 
    margin-bottom: -2px; 
}

/* 연도별 그룹 스타일 */
.timeline-year-group { 
    display: flex; 
    margin-bottom: 0; 
}

/* 좌측 큰 연도 숫자 */
.timeline-year { 
    width: 120px; 
    font-size: 32px; 
    color: #5a8bce; 
    font-weight: 300; 
    padding-right: 30px; 
    text-align: right; 
    flex-shrink: 0;
}

/* 우측 세로선 및 콘텐츠 영역 */
.timeline-items { 
    flex: 1; 
    border-left: 2px solid #b3ccee; 
    padding-left: 30px; 
    position: relative; 
    padding-bottom: 50px; 
}

/* 세로선 위 동그라미 포인트 */
.timeline-items::before {
    content: '';
    position: absolute;
    top: 10px; 
    left: -7px; 
    width: 12px;
    height: 12px;
    border: 2px solid #b3ccee;
    background-color: #fff;
    border-radius: 50%;
}

/* 개별 아이템 스타일 */
.timeline-item { 
    margin-bottom: 30px; 
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.item-date { 
    color: #5a8bce; 
    font-size: 15px; 
    font-weight: 500;
    margin-bottom: 8px; 
}
.item-desc { 
    color: #444; 
    line-height: 1.6; 
    font-size: 15px;
}