@charset "UTF-8";

.epic-section {
  background: #fff; /* 흰색 배경 */
  padding: 100px 20px;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
}

.epic-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.epic-line {
  opacity: 0;
  font-size: 16px;
  line-height: 1.9;
  margin: 40px 0;
  transform: translateY(0);
  transition: all 1.2s ease-out;
}

/* 출처별 등장 방향 */
.from-top {
  transform: translateY(-60px);
}

.from-bottom {
  transform: translateY(60px);
}

.epic-line.show {
  opacity: 1;
  transform: translateY(0);
}

.history-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Noto Sans KR', sans-serif;
}

.history-year {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	margin-top: 60px;
	margin-bottom: 25px;
	border-left: 5px solid #00aaff;
	padding-left: 15px;
}

/* 연혁 리스트 전체 */
.history-list {
	margin-left: 10px;
	margin-bottom: 40px;
}

/* 개별 항목 스타일 */
.history-item {
	font-size: 18px;
	line-height: 1.8;
	padding: 15px 20px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 12px;
	color: #333;
	transition: all 0.3s ease;
}

/* 마우스 호버 시 살짝 올라오는 효과 */
.history-item:hover {
	transform: translateY(-3px);
	background: #eef8ff;
}

.history-item.visible {
  opacity: 1;
  transform: translateY(0);
}
