.elementor-3137 .elementor-element.elementor-element-7cdd7206{--display:flex;--min-height:400px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3137 .elementor-element.elementor-element-7cdd7206:not(.elementor-motion-effects-element-type-background), .elementor-3137 .elementor-element.elementor-element-7cdd7206 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://hansol7946.mycafe24.com/wp-content/uploads/2026/05/company-scaled-1.webp");background-position:center center;background-repeat:no-repeat;}.elementor-3137 .elementor-element.elementor-element-75b94eb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-3137 .elementor-element.elementor-element-a3faa62{--display:flex;}.elementor-3137 .elementor-element.elementor-element-fc8c41e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:120px;--margin-bottom:050px;--margin-left:0px;--margin-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-3137 .elementor-element.elementor-element-723db1f .elementor-heading-title{font-family:"pretendard", Sans-serif;font-size:40px;font-weight:800;color:#004BD5;}.elementor-3137 .elementor-element.elementor-element-9629458{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:080px;--padding-left:0px;--padding-right:0px;}body.elementor-page-3137:not(.elementor-motion-effects-element-type-background), body.elementor-page-3137 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-3137 .elementor-element.elementor-element-9629458{--margin-top:0px;--margin-bottom:0px;--margin-left:10px;--margin-right:20px;}}@media(min-width:768px){.elementor-3137 .elementor-element.elementor-element-7cdd7206{--width:100%;}.elementor-3137 .elementor-element.elementor-element-75b94eb{--content-width:1920px;}.elementor-3137 .elementor-element.elementor-element-fc8c41e{--content-width:100%;}.elementor-3137 .elementor-element.elementor-element-9629458{--content-width:100%;}}@media(min-width:1025px){.elementor-3137 .elementor-element.elementor-element-7cdd7206:not(.elementor-motion-effects-element-type-background), .elementor-3137 .elementor-element.elementor-element-7cdd7206 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-attachment:scroll;}}/* Start custom CSS for html, class: .elementor-element-efbf565 *//* 기본 컨테이너 설정 */
.el_history_container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  font-family: 'Pretendard', sans-serif;
  box-sizing: border-box;
}

/* 타임라인 왼쪽 메인 세로 라인 */
.el_history_container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background-color: #E2E8F0;
  z-index: 1;
}

/* 🌟 [효과 1] 스크롤 시 연도 그룹 전체가 부드럽게 등장하는 애니메이션 */
@keyframes fadeInUpTimeline {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 각 연도별 그룹 블록 */
.el_history_group {
  position: relative;
  margin-bottom: 50px;
  padding-left: 35px;
  z-index: 2;
  
  /* 최신 브라우저 기준 스크롤 애니메이션 적용 */
  animation: fadeInUpTimeline both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

.el_history_group:last-child {
  margin-bottom: 0;
}

/* 큰 연도 타이틀 및 좌측 도트 블릿 */
.el_history_year {
  font-size: 32px;
  font-weight: 800;
  color: #004BD5;
  text-align: left !important;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.2;
}

/* 연도 옆 좌측 블루 도트 심볼 */
.el_history_year::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #004BD5;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #004BD5;
}

/* 내부 리스트 컨테이너 */
.el_history_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 개별 월별 아이템 */
.el_history_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left !important;
  cursor: pointer;
  transition: transform 0.3s ease; /* 호버 시 전체적인 움직임 부드럽게 */
}

/* 월 숫자 스타일 */
.el_history_month {
  font-size: 16px;
  font-weight: 700;
  color: #004BD5;
  min-width: 24px;
  padding-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* 연역 상세 설명 텍스트 */
.el_history_text {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.55;
  word-break: keep-all;
  transition: color 0.3s ease; /* 색상 변경 부드럽게 */
}

/* 🌟 [효과 2] 마우스 호버(Hover) 시 인터랙션 효과 */
@media (hover: hover) {
  .el_history_item:hover .el_history_text {
    color: #004BD5; /* 마우스 올리면 텍스트가 브랜드 컬러로 변경 */
  }
  
  .el_history_item:hover {
    transform: translateX(6px); /* 우측으로 6px 살짝 슬라이딩 */
  }
}


/* 🖥️ PC / 태블릿 반응형 스타일 (화면 가로 768px 이상일 때) */
@media (min-width: 768px) {
  .el_history_container::before {
    left: 8px;
  }
  
  .el_history_group {
    padding-left: 55px;
  }
  
  .el_history_year {
    font-size: 38px;
  }
  
  .el_history_year::before {
    left: -53px;
    width: 16px;
    height: 16px;
  }
  
  .el_history_month {
    font-size: 18px;
    min-width: 28px;
    padding-top: 2px;
  }
  
  .el_history_text {
    font-size: 17px;
  }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'pretendard';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Regular.eot');
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Regular.eot?#iefix') format('embedded-opentype'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Regular.woff2') format('woff2'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Regular.woff') format('woff'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'pretendard';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Medium.eot');
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Medium.eot?#iefix') format('embedded-opentype'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Medium.woff2') format('woff2'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Medium.woff') format('woff'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-Medium.ttf') format('truetype');
}
@font-face {
	font-family: 'pretendard';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-SemiBold.eot');
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-SemiBold.woff2') format('woff2'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-SemiBold.woff') format('woff'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'pretendard';
	font-style: normal;
	font-weight: 800;
	font-display: auto;
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-ExtraBold.eot');
	src: url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-ExtraBold.eot?#iefix') format('embedded-opentype'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-ExtraBold.woff2') format('woff2'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-ExtraBold.woff') format('woff'),
		url('https://hansol7946.mycafe24.com/wp-content/uploads/2026/03/Pretendard-ExtraBold.ttf') format('truetype');
}
/* End Custom Fonts CSS */