/*======== 
강사님 프로필
=========*/

/* 기본 구조 */
#profile {
  background: #f6f7f8;
  color: #1f2328;
}

/* 상단 프로필 */
#profile .hero {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid #e5e7ea;
  padding: 20px 24px;
  border-radius: 12px;
}

#profile .avatar {
  width: 125px;
}

#profile .meta h1 {
  font-size: 26px;
  margin: 0 0 6px;
  font-weight: 700;
}

#profile .subtitle {
  margin: 0 0 10px;
  color: #69707a;
  font-size: 15px;
}

#profile .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#profile .tag {
  font-size: 13px;
  color: #ef4c53;
  background: #ffe9ec;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #f7d6da;
  font-weight: 600;
}

/* 블록 */
#profile .block {
  background: #fff;
  border: 1px solid #e5e7ea;
  border-radius: 6px;
  padding: 20px;
  box-sizing: border-box;
  transition: transform .28s ease;
}
#profile .block:hover {
    transform: translateY(-3px);
}

/* full width (주요경력) */
#profile .block.full {
  margin-top: 20px;
}

/* 2행 구성 */
#profile .rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

#profile .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#profile .block.half {
  flex: 1 1 calc(50% - 10px);
}

@media (max-width: 800px) {
  #profile .block.half {
    flex: 1 1 100%;
  }
}

/* 타이틀 */
#profile .pf-title {
  font-size: 18px;
  font-weight: 700;
  color: #ef4c53;
  margin: 0 0 14px;
  border-bottom: 2px solid #ef4c53;
  display: inline-block;
  padding-bottom: 2px;
}

/* 정의 리스트 */
#profile .dl {
  display: grid;
  gap: 10px;
}

#profile .dl-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

#profile .dl-item dt {
  color: #69707a;
  font-weight: 600;
}

#profile .dl-item dd {
  margin: 0;
}

/* 리스트 */
#profile ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

#profile ul.clean li {
  padding: 6px 0;
  border-bottom: 1px solid #f1f2f4;
  font-size: 15px;
}

#profile ul.clean li:last-child {
  border-bottom: none;
}

/* 칩 */
#profile .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#profile .chip {
  background: #f7f9fb;
  border: 1px solid #eceff2;
  color: #3a3f45;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
}

#profile .muted {
  color: #69707a;
}

.coment {
  margin-top: 20px;
  color: #ababab;
}