 /*---------------------------------
 aminoVITAL chronology
 ----------------------------------*/
/* PC 버전 */
 .chrono-section {
  background: url('/bizdemo161555/img/hblock/content/style102/img/chronology-bg.png') no-repeat center top;
  background-size: cover;
  padding: 80px 20px;
  max-width: 1200px;
  margin:0 auto;
  position: relative;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
 }

.chrono-timeline-section {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
 padding: 100px 20px;
}

.chrono-component {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.chrono-img {
  width: 60%;
  max-width: 300px;
}

.chrono-text {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  right: -50px;
  padding: 20px 15px;
  max-width: 300px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-align: left;
  z-index: 2;
}

.chrono-text.centered {
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
}

.chrono-text.right-text {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 280px;
  z-index: 2;
}

.chrono-title {
  font-size: 21px;
  font-weight: 600;
  color: #bfa661;
  margin-bottom: 10px;
}

.chrono-desc {
  font-size: 16px;
  color: #001655;
  line-height: 1.5;
}

.chrono-year {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
}

.vertical-line {
 display: block;
 width: 8px;
 height: 70px;
 margin: 0px auto;
}

.chrono-block {
  position: relative;
  display: inline-block; 
  align-items: center;
  margin-bottom: 80px;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Mobile 버전 */
@media screen and (max-width: 768px) {
  .chrono-section {
    padding: 40px 15px; 
    background-image: url('/bizdemo161555/img/hblock/content/style102/img/chronology-bg.png');
    background-position: top center; 
    background-size: contain; 
  }

  .chrono-component {
    position: relative;
    text-align: center;
    padding-bottom: 40px;
  }

  .chrono-year {
    position: static;
    transform: none;
    margin-bottom: 10px;
    width: 80px;
    height: auto;
  }

  .chrono-img {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    height: auto;
  }

  .chrono-text.right-text {
    position: static;
    transform: none;
    margin-top: 10px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-align: center;
  }

  .chrono-title {
    font-size: 20px;
  }

  .chrono-desc {
    font-size: 16px;
  }
}
  