@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*, *::before, *::after {  box-sizing: border-box;}

.m-content {  padding: 0px;  max-width: 100%;  margin: 0 auto;}
.m-timeline {  position: relative;  list-style: none;  padding: 0;  margin: 0;    color: #333;}
.m-timeline > li {  position: relative;  padding: 0px 0 50px 30px;  transition: all 100ms;}
.m-timeline > li::before, .m-timeline li::after {  transition: all 100ms;}
.m-timeline > li::before {  display: block;  content: '';  position: absolute;  top: 13px;  left: 0;  z-index: 2;
 background-color:#ccc /*#90c31f*/ ;  width: 11px;  height: 11px;  border-radius: 50%;  /*border: 3px solid #111;*/}
.m-timeline > li::after {  content: '';  display: block;  width: 1px;  background-color: #ccc;  position: absolute;
  top: 20px;  left: 0px;  height: 100%;  z-index: 1;}
.m-timeline > li:first-child::after {  top: 15px;}
/*.m-timeline > li:last-child::after {  height: 15px;}*/
.m-timeline__date {font-family: 'GmarketSansBold'; font-size: 30px; font-weight:600;  margin: 0 0 20px 0;  }
.m-timeline p {  margin: 0 0 .5em;}

@media (min-width: 1024px) {
  .m-timeline > li:nth-child(odd) {
    text-align: right;
    padding-left: 0;
    padding-right: calc(50% + 50px);
  }
  .m-timeline > li:nth-child(even) {
    padding-left: calc(50% + 50px);
  }
  .m-timeline > li::before {    left: calc(50% - 5px);  }
  .m-timeline > li::after {    left: calc(50% - 0px);  }
}

ul.detail {list-style:none; padding:0; margin:0;}
ul.detail li {
  font-size:16px;
  line-height:22px;
  padding:8px 0;
  font-weight:500;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.detail li span{  width:calc(100% - 40px);  }
ul.detail li span.detailD {
  color:#ccc;
  width:40px;
  font-weight:800;
  font-size: 16px;
  padding-top:0px;
}
.m-timeline > li:nth-child(odd) li {flex-direction: row-reverse;}

/*---------------------------------------
  MOBILE RESPONSIVE
-----------------------------------------*/
@media (max-width: 1023px) {
  .m-timeline > li:nth-child(odd) li {flex-direction: row;}
  .m-timeline > li::after {  left: 7px; }
  .m-timeline > li {   padding: 0px 0 30px 25px;  }
  .m-timeline__date { font-size: 22px;   margin: 0 0 10px 0;  }
  ul.detail li {font-size:15px;}
  ul.detail li span{  width:calc(100% - 30px);  }
  ul.detail li span.detailD {color:#ccc; width:30px;   font-size: 13px;  padding-top:3px;   }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
@media (max-width: 480px) {
}
@media (max-width: 320px) {
}

/* ==========================
   style2.css 내용 통합
========================== */
.timeline .default-line {
  content: "";
  position: absolute;
  left: 50%;
  width: 0px;
  background: #bdc3c7;
  height: 100%;
}

.timeline .draw-line {
  width: 5px;
  height: 0;
  top:20px;
  position: absolute;
  left: calc(50% - 2px);
  border-radius:10px;
  background: #90c31f;
  z-index: 2;
}

/*.timeline > ul > li.in-view {
  transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;
}*/
.timeline > ul > li.in-view::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #90c31f;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
 /* transition: 0.125s ease-in-out, background-color 0.2s ease-out, color 0.1s ease-out, border 0.1s ease-out;*/
}
/*.timeline > ul > li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: inherit;
  background: #bdc3c7;
  transition: all 0.4s ease-in-out;
}*/

/*---------------------------------------
  MOBILE RESPONSIVE (style2 부분)
-----------------------------------------*/
@media (max-width: 1023px) {

  .timeline .draw-line {
    width: 3px;
    height: 0;
    top:20px;
    position: absolute;
    left: 6px;
    border-radius:10px;
    background: #90c31f;
    z-index: 2;
  }

  .timeline > ul > li.in-view::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    transform: translateX(0);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #90c31f;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
}
@media (max-width: 480px) {
}
@media (max-width: 320px) {
}

/* ==========================================================
   ✅ 중국어 줄바꿈 & 텍스트 깨짐 방지용 추가 코드
   (레이아웃은 그대로 두고, 글자만 안전하게)
========================================================== */

/* 중국어 문장 줄바꿈 강제 */
.lang-zh {
  word-break: break-all !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
}

/* 연혁 텍스트 전체에 안전한 줄바꿈 적용 */
ul.detail li span.txt {
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}

/* 한국어/중국어 span 모두 줄바꿈 안전하게 */
ul.detail li span.txt .lang-ko,
ul.detail li span.txt .lang-zh {

  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}
