/* ==============================
   ORGANIZATION CHART
============================== */

.org-chart {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 80px;
    box-sizing: border-box;
    font-family: "Pretendard", "Noto Sans", Arial, sans-serif;
}

.org-chart * {
    box-sizing: border-box;
}


/* 공통 박스 */
.org-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 12px 25px;
    border-radius: 16px;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    word-break: keep-all;
}


/* 대표이사 */
.org-ceo {
    position: relative;
    width: 240px;
    margin: 0 auto;
    border-radius: 40px;
    background: #245f8c;
}


/* ==============================
   품질관리부
============================== */

.org-middle {
    position: relative;
    height: 255px;
}


/* CEO에서 아래로 내려오는 선 */
.org-middle:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: #d5d5d5;
    transform: translateX(-50%);
}


/* 품질관리부 */
.org-quality {
    position: absolute;
    top: 115px;
    left: calc(50% + 110px);

    width: 220px;
    min-height: 70px;

    background: #1987a7;
}


/* 중앙선 → 품질관리부 가로선 */
.org-quality:before {
    content: "";
    position: absolute;
    left: -110px;
    top: 50%;
    width: 110px;
    height: 1px;
    background: #d5d5d5;
}


/* ==============================
   하단 조직
============================== */

.org-bottom {
    position: relative;
    padding-top: 65px;
}


/* 하단 가로 메인선 */
.org-bottom:before {
    content: "";
    position: absolute;
    top: 0;
    left: 7.5%;
    right: 7.5%;
    height: 1px;
    background: #d5d5d5;
}


/* 중앙선과 하단 가로선 연결 */
.org-bottom:after {
    content: "";
    position: absolute;
    top: -65px;
    left: 50%;
    width: 1px;
    height: 65px;
    background: #d5d5d5;
}


.org-team-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    position: relative;
}


.org-team {
    position: relative;
}


/* 하단 조직까지 내려가는 선 */
.org-team:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -65px;
    width: 1px;
    height: 65px;
    background: #d5d5d5;
    transform: translateX(-50%);
}


/* 하단 팀 */
.org-team .org-box {
    width: 100%;
    min-height: 62px;
    padding-left: 10px;
    padding-right: 10px;

    background: #54a18f;
}


/* ==============================
   TABLET
============================== */

@media (max-width: 1000px) {

    .org-chart {
        padding-left: 15px;
        padding-right: 15px;
    }

    .org-team-list {
        gap: 20px;
    }

    .org-box {
        font-size: 17px;
    }

    .org-quality {
        width: 200px;
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 700px) {

    .org-chart {
        max-width: 520px;
        padding: 30px 20px 60px;
    }


    /* 대표이사 */
    .org-ceo {
        width: 210px;
        min-height: 60px;
        font-size: 18px;
    }


    /* 중간 영역 */
    .org-middle {
        height: auto;
        padding: 55px 0 35px;
    }

    .org-middle:before {
        left: 24px;
        top: 0;
        height: 100%;
        transform: none;
    }


    /* 품질관리부 */
    .org-quality {
        position: relative;
        top: auto;
        left: auto;

        width: calc(100% - 65px);
        min-height: 58px;

        margin-left: 65px;
        font-size: 17px;
    }

    .org-quality:before {
        left: -41px;
        top: 50%;
        width: 41px;
    }


    /* 하단 */
    .org-bottom {
        padding-top: 0;
    }

    .org-bottom:before,
    .org-bottom:after {
        display: none;
    }


    .org-team-list {
        display: block;
    }



    .org-team {
        position: relative;
        margin: 0 0 20px;
        padding-left: 65px;
    }


    /* 모바일 세로 메인선 */
    .org-team:before {
        left: 24px;
        top: -35px;

        width: 1px;
        height: calc(100% + 55px);

        transform: none;
    }


    /* 모바일 가로 연결선 */
    .org-team:after {
        content: "";
        position: absolute;
        left: 24px;
        top: 50%;

        width: 41px;
        height: 1px;

        background: #d5d5d5;
    }


    .org-team .org-box {
        min-height: 58px;
        font-size: 16px;
    }


    /* 마지막 세로선 길이 조절 */
    .org-team:last-child:before {
        height: 50%;
    }

}


/* ==============================
   SMALL MOBILE
============================== */

@media (max-width: 420px) {

    .org-chart {
        padding-left: 12px;
        padding-right: 12px;
    }

    .org-box {
        font-size: 15px;
    }

    .org-ceo {
        width: 190px;
        font-size: 17px;
    }

    .org-quality {
        width: calc(100% - 55px);
        margin-left: 55px;
    }

    .org-team {
        padding-left: 55px;
    }

    .org-team:after {
        width: 31px;
    }

}