@charset "utf-8";

/* ============================================================
   인사말 — PC (sub 1-1)
   ============================================================ */

/* 히어로: content_box 패딩 돌파, 합성 이미지 */
.greeting-hero {
    width: 100%;
    margin: 0;
    height: 490px;
    overflow: hidden;
}
.greeting-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* 히어로 아래 2컬럼: 슬로건(좌) | 본문(우) */
.greeting-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 0 80px;
    gap: 40px;
}

/* 좌: 슬로건 */
.greeting-slogan {
    flex: 0 0 460px;
}
.greeting-slogan p {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #000;
    word-break: keep-all;
}
.greeting-slogan strong {
    font-weight: 900;
    font-style: normal;
    display: block;
}

/* 우: 본문 */
.greeting-body {
    flex: 0 0 620px;
}
.greeting-body p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.04em;
    color: #000;
    margin-bottom: 50px;
    word-break: keep-all;
}
.greeting-body p:last-child { margin-bottom: 0; }

/* 서명 */
.greeting-sign {
    margin-top: 50px;
}
.greeting-sign { display: flex; align-items: center; gap: 12px; margin-top: 50px; }
.greeting-sign-text { display: flex; align-items: center; }
.greeting-sign-name { display: none; }
.greeting-sign-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
.greeting-sign-name {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.04em;
}
.greeting-sign-img {
    display: block;
    height: 36px;
    width: auto;
}

/* ============================================================
   걸어온 길 — PC (sub 1-2)
   ============================================================ */
.history_wrap {
    position: relative;
    padding: 70px 0 80px;
}

/* 세로 중앙선 */
.history_wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 4px;
    background: #f1f1f1;
}

.history_item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.history_item:last-child { margin-bottom: 0; }

/* 이미지 컬럼 — 고정 550px */
.history_img_col {
    flex: 0 0 550px;
    overflow: hidden;
}

.history_img_col img {
    display: block;
    width: 100%;
    aspect-ratio: 12 / 7;
    object-fit: cover;
}

/* 중앙 도트 컬럼 — 남은 공간(항상 width의 50%에 위치) */
.history_center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 60px;
}

.history_dot {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 5px solid #0080c8;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* 텍스트 컬럼 — 고정 550px */
.history_text_col {
    flex: 0 0 550px;
}

/* 이미지 왼쪽 (홀수): img | center | text */
.history_item.img_left .history_text_col {
    padding-left: 60px;
}

/* 이미지 오른쪽 (짝수): text | center | img */
.history_item.img_right .history_img_col  { order: 3; }
.history_item.img_right .history_center   { order: 2; }
.history_item.img_right .history_text_col {
    order: 1;
    padding-right: 60px;
    text-align: right;
}

.history_title {
    font-size: 34px;
    font-weight: 900;
    color: #111;
    line-height: 1.3;
    word-break: keep-all;
    margin: 0 0 18px;
}

.history_desc {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    line-height: 1.75;
    word-break: keep-all;
    margin: 0;
}

.history_desc_bold {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.75;
    word-break: keep-all;
    margin: 0;
}

.history_desc + .history_desc,
.history_desc + .history_desc_bold,
.history_desc_bold + .history_desc,
.history_desc_bold + .history_desc_bold {
    margin-top: 10px;
}

/* ============================================================
   프로필 — PC (sub 1-3)
   ============================================================ */

/* 상단 이름 / 태그라인 */
.profile_hero {
    padding: 55px 0 50px;
    text-align: center;
}

.profile_hero_name {
    font-size: 60px;
    font-weight: 900;
    color: #000;
    margin: 0 0 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.profile_hero_tagline {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
}

/* 사진(좌 고정) + 정보(우) 2컬럼 */
.profile_wrap {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    padding-bottom: 80px;
}

.profile_img_col {
    flex: 0 0 650px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
}

.profile_img_col img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
}

.profile_info_col {
    flex: 1;
    min-width: 0;
}

/* 섹션 공통 */
.profile_section {
    padding-bottom: 55px;
}

.profile_section + .profile_section {
    border-top: 1px solid #e0e0e0;
    padding-top: 55px;
}

/* 섹션 제목: 아이콘 + 텍스트 */
.profile_section_title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin: 0 0 22px;
}

.profile_section_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    height: 20px;
    flex-shrink: 0;
}

.profile_section_icon svg,
.profile_section_icon img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 인적사항 행 (라벨 + 값) */
.profile_row {
    display: flex;
    align-items: baseline;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.profile_row:last-child { margin-bottom: 0; }

.profile_row_label {
    flex: 0 0 96px;
    font-weight: 700;
    color: #797979;
    position: relative;
    padding-left: 18px;
}

.profile_row_label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 1.5px;
    background: #aaa;
}

.profile_row_value {
    flex: 1;
    font-weight: 400;
    color: #111;
}

/* 목록형 섹션 (학력 / 주요경력 / 수상내역 / 저서) */
.profile_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile_list li {
    font-size: 18px;
    font-weight: 400;
    color: #111;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
    margin-bottom: 14px;
    word-break: keep-all;
}

.profile_list li:last-child { margin-bottom: 0; }

.profile_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 1.5px;
    background: #aaa;
}

/* ============================================================
   반응형 — PC 서브 컨텐츠 (≤1199px / ≤999px / ≤768px)
   ============================================================ */

/* 1199px 이하 — 컬럼 폭 축소 */
@media screen and (max-width: 1199px) {
    /* 걸어온 길 */
    .history_img_col { flex: 0 0 420px; }
    .history_text_col { flex: 0 0 420px; }
    .history_item.img_left .history_text_col { padding-left: 48px; }
    .history_item.img_right .history_text_col { padding-right: 48px; }
    .history_title { font-size: 28px; }
    .history_desc,
    .history_desc_bold { font-size: 18px; }

    /* 프로필 */
    .profile_hero_name { font-size: 48px; }
    .profile_hero_tagline { font-size: 24px; }
    .profile_img_col { flex: 0 0 500px; }
    .profile_wrap { gap: 60px; }
}

/* 999px 이하 — 더 축소 */
@media screen and (max-width: 999px) {
    /* 걸어온 길 */
    .history_wrap { padding: 50px 0 60px; }
    .history_img_col { flex: 0 0 310px; }
    .history_text_col { flex: 0 0 310px; }
    .history_item { margin-bottom: 60px; }
    .history_item.img_left .history_text_col { padding-left: 36px; }
    .history_item.img_right .history_text_col { padding-right: 36px; }
    .history_title { font-size: 22px; }
    .history_desc,
    .history_desc_bold { font-size: 16px; }

    /* 프로필: 사진+정보 세로 스택 */
    .profile_hero_name { font-size: 38px; }
    .profile_hero_tagline { font-size: 20px; }
    .profile_wrap { flex-direction: column; gap: 32px; }
    .profile_img_col {
        position: static;
        flex: unset;
        width: 480px;
        max-width: 100%;
    }
    .profile_section_title { font-size: 20px; }
    .profile_row { font-size: 16px; }
    .profile_row_label { flex: 0 0 86px; }
    .profile_list li { font-size: 16px; }
}

/* 768px 이하 — 완전 세로 스택 */
@media screen and (max-width: 768px) {
    /* 걸어온 길: 세로 나열 */
    .history_wrap { padding: 36px 0 40px; }
    .history_wrap::before { display: none; }

    .history_item {
        flex-direction: column;
        margin-bottom: 44px;
    }
    .history_item:last-child { margin-bottom: 0; }

    /* img_right order 초기화 */
    .history_item.img_right .history_img_col,
    .history_item.img_right .history_center,
    .history_item.img_right .history_text_col { order: unset; }

    .history_img_col { flex: 0 0 auto; width: 100%; }
    .history_center { flex: 0 0 40px; min-width: unset; justify-content: flex-start; padding-left: 0; }
    .history_text_col { flex: 0 0 auto; width: 100%; }

    .history_item.img_left .history_text_col { padding-left: 0; }
    .history_item.img_right .history_text_col { padding-right: 0; text-align: left; }

    .history_title { font-size: 20px; margin-bottom: 12px; }
    .history_desc,
    .history_desc_bold { font-size: 15px; }

    /* 프로필 */
    .profile_hero { padding: 36px 0 32px; }
    .profile_hero_name { font-size: 30px; }
    .profile_hero_tagline { font-size: 16px; }
    .profile_img_col { width: 100%; }
    .profile_section_title { font-size: 18px; gap: 8px; }
    .profile_section_icon { flex: 0 0 16px; height: 16px; }
    .profile_section + .profile_section { padding-top: 28px; margin-top: 0; }
    .profile_section { padding-bottom: 28px; }
    .profile_row { font-size: 14px; margin-bottom: 12px; }
    .profile_row_label { flex: 0 0 76px; font-size: 13px; }
    .profile_row_label::before { width: 7px; }
    .profile_list li { font-size: 14px; margin-bottom: 10px; padding-left: 14px; }
    .profile_list li::before { width: 7px; }
}
