/* 기본 설정 */
.Subcontainer {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: "Pretendard", sans-serif;
  color: #333;
}


.company-history h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.subtitle {
  display: none; /* 미니멀을 위해 생략 가능, 필요시 살리세요 */
}

/* 연혁 리스트 구조 */
.history-timeline {
  border-top: 1px solid #111; /* 상단 굵은 선으로 시작 */
  padding-top: 20px;
}

.history-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #eee; /* 항목 간 가느다란 구분선 */
}

/* 연도 - 고정 너비와 굵은 폰트 */
.year {
  width: 150px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  flex-shrink: 0;
}

/* 컨텐츠 - 간결한 텍스트 */
.content h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.content p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}