@charset "utf-8";

/* 기본 설정 */
#leader_wrap {
    width: 100%;
    font-family: 'Pretendard', -apple-system, sans-serif;
    color: #111;
    padding-bottom: 120px;
}

#leader_wrap .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 페이지 헤더 */
.page_header_sec {
    padding: 100px 0 80px;
    text-align: center;
}
.page_tit { font-size: 48px; font-weight: 700; margin-bottom: 15px; }
.page_desc { font-size: 18px; color: #666; line-height: 1.5; font-weight: 500;}

/* 섹션 공통 - 그룹 라벨 (The Visionary 등) */
.group_label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary, #0055ff); /* 브랜드 컬러 */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-top: 2px solid #111;
    display: inline-block;
    padding-top: 10px;
}

/* --- [CEO 섹션] --- */
.sec_ceo { margin-bottom: 100px; }

.ceo_box {
    display: flex; /* 좌우 배치 */
    gap: 60px;
    align-items: flex-start;
}

.ceo_vis { width: 40%; flex-shrink: 0; }
.ceo_txt { width: 60%; padding-top: 20px; }

/* CEO 사진 프레임 */
.ceo_vis .img_frame img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    /* 흑백 사진 원하시면 아래 주석 해제 */
    /* filter: grayscale(100%); */
}

/* CEO 텍스트 스타일 */
.ceo_txt .name { font-size: 42px; font-weight: 700; margin-bottom: 10px; color: #000; }
.ceo_txt .degree { font-size: 20px; font-weight: 400; color: #666; margin-left: 10px; }
.ceo_txt .position { font-size: 20px; color: var(--primary, #0055ff); font-weight: 600; margin-bottom: 30px; }
.ceo_txt .quote { 
    font-size: 26px; line-height: 1.4; font-weight: 500; 
    color: #222; margin-bottom: 30px; word-break: keep-all; 
    border-left: 4px solid #ddd; padding-left: 20px; /* 인용구 디자인 */
}

/* 경력 리스트 공통 */
.career_list { list-style: none; padding: 0; margin-bottom: 30px; }
.career_list li {
    font-size: 17px; color: #444; margin-bottom: 8px; position: relative; padding-left: 12px;
}
.career_list li::before {
    content: '-'; position: absolute; left: 0; top: 0; color: #999;
}

/* Specialty 공통 */
.specialty {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}
.specialty .label {
    display: block; font-weight: 700; color: #000; margin-bottom: 5px; text-transform: uppercase; font-size: 13px;
}


/* --- [Authority & Executors 섹션] --- */
.sec_group { margin-bottom: 100px; }

.member_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 배치 */
    gap: 60px; /* 카드 사이 간격 */
}

.member_card {
    display: flex;
    flex-direction: column;
}

.member_card .img_frame img {
  
    width: 70%;
    height: 400px; /* 세로 길이 고정 (정렬을 위해) */
    object-position: center top;
    object-fit: cover;
    border-radius: 4px;
    background-color: #eee;
}

.member_card .txt_area { margin-top: 20px; }
.member_card .name { font-size: 28px; font-weight: 700; margin-bottom: 5px; }
.member_card .degree { font-size: 16px; font-weight: 400; color: #666; }
.member_card .position { font-size: 16px; color: var(--primary, #0055ff); font-weight: 600; margin-bottom: 20px; }
.member_card .quote { 
    font-size: 18px; color: #222; font-weight: 500; margin-bottom: 20px; 
    min-height: 54px; /* 줄바꿈 고려해 높이 확보 */
}


/* --- [로고 바 (Logo Bar)] --- */
.logo_bar {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap; /* 로고 많으면 줄바꿈 */
}

.logo_bar img {
    height: 30px; /* 로고 높이 통일 */
    width: auto;
    /* ★ 핵심: 로고 회색조 처리 (DeepX 스타일) ★ */
    filter: grayscale(100%); 
    opacity: 0.6; /* 너무 튀지 않게 투명도 조절 */
    transition: all 0.3s;
}

.logo_bar img:hover {
    filter: grayscale(0%); /* 마우스 올리면 컬러로 */
    opacity: 1;
}


/* --- 반응형 (모바일) --- */
@media (max-width: 768px) {
    .ceo_box { flex-direction: column; gap: 30px; }
    .ceo_vis, .ceo_txt { width: 100%; }
    .ceo_txt .name { font-size: 32px; }
    .ceo_txt .quote { font-size: 20px; }
    
    .member_grid { grid-template-columns: 1fr; gap: 60px; } /* 1열로 변경 */
    .member_card .img_frame img { height: auto; aspect-ratio: 4/5; } /* 모바일에선 비율로 */
}