/* 기본 스타일 */
.container { max-width: 100%; overflow: hidden; margin: 0 auto; }

/* 타임라인 레이아웃 */
.timeline { position: relative; padding: 20px 0; }

/* 중앙 선 */
.timeline::before {
    content: '';
    position: absolute;
    left: 100px; /* 연도 영역 너비 */
    top: 0;
    width: 2px;
    height: 100%;
    background: #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
}

.timeline-date {
    width: 80px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    padding-top: 5px;
}

.timeline-content {
    padding-left: 40px;
    position: relative;
}

/* 타임라인 점 */
.timeline-content::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #FF8300;
    border-radius: 50%;
}


