#cv-page * { box-sizing: border-box; }
#cv-page { height: 100%; }

#cv-page{
  color: #111;
  -webkit-font-smoothing: antialiased;
  font-family: 'EB Garamond', 'Noto Serif KR', Georgia, serif;
}

#cv-page .page{
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 26px 70px;
}

#cv-page .top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 26px;
}

#cv-page .back{
  justify-self: start;
  font-style: italic;
  text-decoration: none;
  color: #333;
}
#cv-page .back:hover{ text-decoration: underline; }

#cv-page .title{ text-align: center; }
#cv-page .title h1{
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
#cv-page .name{
  margin-top: 2px;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.04em;
}
#cv-page .links{
  justify-self: end;
  display: flex;
  gap: 14px;
  font-style: italic;
}
#cv-page .links a{
  color: #333;
  text-decoration: none;
}
#cv-page .links a:hover{ text-decoration: underline; }

#cv-page .section{ margin: 22px 0 28px; }
#cv-page .section h2{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

#cv-page .list{
  list-style: none;
  padding: 0;
  margin: 0;
}
#cv-page .list li{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
}
#cv-page .list li:first-child{ border-top: 1px solid #f0f0f0; }
#cv-page .when{
  font-size: 13px;
  color: #666;
  letter-spacing: 0.02em;
}
#cv-page .what{
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 560px){
  #cv-page .top{ grid-template-columns: 1fr; }
  #cv-page .links{ justify-self: start; }
  #cv-page .title{ text-align: left; }
  #cv-page .list li{ grid-template-columns: 1fr; gap: 6px; }
}

