@charset "UTF-8";
/* 임원현황 페이지 스타일 */
#pg-executive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.executive-card {
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  transition: all 0.2s ease;
  background-color: #ffffff;
  margin-bottom: 24px;
  overflow: hidden;
}

.executive-card:hover {
  border-color: #2c5aa0;
}

.executive-card .avatar {
  padding: 24px 20px;
  text-align: center;
  background-color: #ffffff;
}

.executive-card .avatar img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e1e8ed;
}

.executive-card .body {
  padding: 20px 24px 24px;
  background-color: #ffffff;
}

.executive-card .body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.executive-card .body li {
  padding: 10px 0;
  border-bottom: 1px solid #e8ecef;
  font-size: 16px;
  line-height: 1.8;
  color: #495057;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.executive-card .body li:first-child {
  padding-top: 0;
}

.executive-card .body li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.executive-card .body strong {
  color: #1a365d;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.3px;
  margin-right: 4px;
  flex-shrink: 0;
}

.executive-card .body li span {
  flex: 1;
  min-width: 0;
}

.ui.horizontal.divider.header {
  color: #1a365d;
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #2c5aa0;
  letter-spacing: -0.3px;
  display: block;
  text-align: center;
}

.ui.horizontal.divider.header::before,
.ui.horizontal.divider.header::after {
  display: none;
}

.bullet {
  background-color: #f8fafb;
  padding: 16px 24px;
  margin-bottom: 32px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  order: 2px dotted #2c5aa0;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px dotted #2c5aa0;
}

.bullet h3 {
  color: #1a365d;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.bullet-info {
  color: #2c5aa0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.bullet p {
  color: #495057;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.py-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col-4_xs-12_sm-6 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 12px;
}

@media (max-width: 768px) {
  .col-4_xs-12_sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .executive-card .avatar img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .col-4_xs-12_sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #pg-executive {
    padding: 12px;
  }
  .executive-card .avatar img {
    width: 100px;
    height: 100px;
  }
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

h3.ui.header {
  font-size: 1.28571429rem;
}

.ui.header {
  border: none;
  margin: calc(2rem - 0.14285714em) 0em 1rem;
  padding: 0em 0em;
  font-family: 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1.28571429em;
  text-transform: none;
  color: rgba(0, 0, 0, 0.87);
}

/* 직책 헤더 스타일 단순화 */
#pg-executive section.card .avatar .img-center,
#pg-employee section.card .avatar .img-center {
  border-radius: 0;
  overflow: unset;
  width: auto;
  height: auto;
  border: none;
}

/* 이미지 원형 처리를 위한 추가 스타일 */
#pg-executive section.card .avatar .img-center img.avatar-circle {
  border-radius: 50%;
}

.sub-body .bullet h3::before {
  display: none;
}

.sub-body .bullet h3 {
  padding-bottom: 0;
}
