/* 페이지 공용 - ../public/publicStyle.css */

/* 햄버거 버튼 및 메뉴용 - ../public/hambugerStyle.css */

/* 메인페이지용 */
.introduceSection {
    text-align: justify;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profileImgBox {
    width: 15%
}

.profileImgBox img {
    width: 100%;
}

.profileTxtBox {
    width: 40%;
    margin-left: 1em;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profileTxtPair {
    font-size: 0.85em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profileTxtKey {
    width: 27.5%;
    text-align: right;
}

.profileTxtValue {
    width: 62.5%;
}

.profileTxtBox p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 150%;
}

.timeline {
  position: relative;
  margin: auto;
  font-size: 0.8em;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 28px;
  width: 4px;
  height: 100%;
  background-color: #002694;
}

.timeline-item {
  position: relative;
  margin: 40px 0;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 0;
  transform: translateY(50%);
  width: 16px;
  height: 16px;
  background-color: #002694;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #002694;
}

.timeline-date {
  font-family: 'NanumSquareB';
  color: #002694;
  margin-bottom: 10px;
}

.timeline-content {
  background: white;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  margin: 0 0 10px;
}

.timeline-content p {
  margin: 0;
}

.timeline-content img {
    margin-top: 10px;
    width: 20%;
    border-radius: 5px;
}