/* 기본 폰트 및 박스 설정 */
.con-tit, .his-wrap, .his-con-list, .year, .date, .his-desc {
    font-family: 'NanumSquare', sans-serif;
    color: rgb(63, 63, 63);
    box-sizing: border-box;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* 제목 스타일 */
.con-tit.bold {
    padding: 80px 0 12px 80px;
    font-weight: 700;
    font-size: 32px;
}

/* 전체 래퍼 */
.his-wrap {
    padding-bottom: 80px;
    font-size: medium;
}

/* 연도별 리스트 컨테이너 */
.his-con-list {
    display: flex;
    padding-left: 80px;
}

/* 연도 텍스트 (왼쪽) */
.year.normal {
    margin-right: 52px;
    font-size: 40px;
    color: rgb(60, 95, 181);
    flex-shrink: 0; /* 연도가 줄어들지 않도록 고정 */
}

/* 중앙 라인 및 원형 그래픽 */
.his-line-wrap {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0; /* 필요시 간격 조정 */
}

.his-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(60, 95, 181);
}

.his-line {
    margin-top: 8px;
    width: 0;
    /* 원본의 고정 높이 160px을 유지.
       내용이 길어질 경우 height: 100% 혹은 min-height로 변경 고려 가능 */
    height: 160px;
    border-left: 2px solid rgb(200, 216, 255);
}

/* 오른쪽 콘텐츠 리스트 (ul) */
.his-cont {
    list-style: none;
    padding-top: 12px;
    flex-grow: 1;
}

.his-cont li {
    display: flex;
    /*padding-bottom: 16px; !* 항목 간 간격 *!*/
}

.his-cont li:first-child {
    padding-top: 0;
}

/* 날짜 텍스트 */
.date.bolder {
    margin-left: 52px;
    width: 150px;
    font-weight: 800;
    font-size: 16px;
    color: rgb(120, 152, 235);
    flex-shrink: 0; /* 날짜 너비 고정 */
}

/* 설명 텍스트 */
.his-desc {
    flex-grow: 1;
    font-size: 16px; /* 원본에는 명시되지 않았으나 가독성을 위해 추가 권장 */
}