/* BASIC css start */
/* 이미지 */
.history-item img {
  margin-left: auto;
  max-width: 200px ;
  max-height: 60px 
}

.history-wrap img {
 display: block;
  width: 100% ;
  height: auto;
}


/* 타이틀 */

.page-header {
  background-color: #fff;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.page-header .page-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    line-height: 49px;
}

.page-header .page-sub {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 24px;
}


/* CEO */
.Name .CEO {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #007249; /* 그린 포인트 */
  flex-shrink: 0;
  margin-bottom: 40px;
}


/* 연혁 전체 영역 */
.history-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* 리스트 초기화 */
.history-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 한 줄 단위 */
.history-item {
  display: flex;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #eaeaea;
}

/* 연도 */
.history-item .year {
  width: 120px;
  font-size: 18px;
  font-weight: 700;
  color: #007249; /* 그린 포인트 */
  flex-shrink: 0;
}

/* 설명 */
.history-item .desc {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .history-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .history-item .year {
    width: auto;
    margin-bottom: 8px;
  }
  
  .history-item img {
    display: none;
}
  
}


/* BASIC css end */

