/* =========================================
       CSS 디자인 영역 (수정됨)
    ========================================= */
    
    /* 기본 리셋 및 컨테이너 설정 */
    #timeline-wrapper {
        font-family: 'Noto Sans KR', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
        box-sizing: border-box;
        color: #333;
    }

    /* [수정] 세로줄(#timeline-wrapper::before) 제거됨 */

    /* 연도별 블록 */
    .year-block {
        margin-bottom: 40px;
    }

    /* 연도 헤더 (파란색 원 + 연도 텍스트) */
    .year-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    /* [수정] 파란색 원 스타일 조정 */
    .year-dot {
        width: 14px;
        height: 14px;
        background-color: #0055AA; /* 메인 블루 */
        border-radius: 50%;
        margin-right: 15px; /* 텍스트와의 간격 */
        box-shadow: 0 0 0 2px rgba(0, 85, 170, 0.2); /* 가벼운 테두리 효과 */
        /* 기존의 마진, 두꺼운 흰색 테두리 제거됨 */
    }

    /* [수정] 연도 타이틀 */
    .year-title {
        font-size: 26px;
        font-weight: 700;
        color: #0055AA;
        /* margin-left 제거됨 (dot의 margin-right로 대체) */
    }

    /* [수정] 개별 이벤트 아이템 */
    .event-item {
        display: flex;
        margin-bottom: 10px;
        padding-left: 30px; /* [수정] 왼쪽 여백 줄임 (세로줄 제거에 맞춤) */
    }

    /* 이벤트 날짜 */
    .event-date {
        min-width: 75px;
        font-size: 15px;
        font-weight: 700;
        color: #555;
        padding-top: 2px; /* 텍스트 줄맞춤 보정 */
    }

    /* 이벤트 내용 */
    .event-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #222;
        word-break: keep-all; /* 단어 단위 줄바꿈 */
    }

    /* 모바일 반응형 처리 */
    @media (max-width: 768px) {
        .year-title { font-size: 22px; }
        /* [수정] 모바일Padding 조정 */
        .event-item { 
            flex-direction: column; 
            padding-left: 30px; 
            margin-bottom: 15px; 
        }
        .event-date { margin-bottom: 4px; color: #0055AA; }
    }