.org-contact-section {
    background-color: var(--dark);
}

.org-header {
    border-bottom: 1px solid rgba(0, 212, 170, .3);
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.org-label {
    color: #00d4aa;
    font-size: 18px;
    font-weight: 700;
}

.org-title {
    color: #fff;
    font-size: 64px;
    font-weight: 800;
    margin-top: 10px;
}

.org-subtitle {
    color: #aeb8c7;
    font-size: 20px;
}

.office-card {
    height: 100%;
    border: 1px solid rgba(0, 212, 170, .35);
    border-radius: 15px;
    background: #07193d;
}

.office-top {
    padding: 40px 50px;
    border-bottom: 1px solid rgba(0, 212, 170, .25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.office-top h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.office-top span {
    color: #00d4aa;
    font-size: 20px;
}

.office-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(0, 212, 170, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-icon i {
    color: #00d4aa;
    font-size: 30px;
}

.office-body {
    padding: 30px 20px;
}

.info-title {
    color: #9aa8bf;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-row {
    color: #fff;
    font-size: 18px;
    padding-left: 1.9em;
    /* 줄바뀜 시 텍스트 시작 위치 확보용 여백 */
}

.info-row i {
    display: inline-block;
    /* width 적용을 위해 inline-block 처리 */
    width: 1.25em;
    /* 아이콘 폭 고정 */
    color: #00d4aa;
    margin-left: -1.9em;
    /* 위 padding 영역으로 아이콘을 끌어옴 */
    margin-right: 0.4em;
    /* 아이콘과 텍스트 사이 간격 (width와 합쳐 2em) */
    text-align: center;
    /* 고정폭 안에서 아이콘 중앙 정렬 */
}

.contact-wrap {
    display: flex;
    gap: 50px;
    color: #fff;
    font-size: 18px;
}

.contact-wrap i {
    color: #00d4aa;
    margin-right: 10px;
}

.staff-area {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 25px;
    padding-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.staff-box {
    border: 1px solid rgba(0, 212, 170, .2);
    border-radius: 18px;
    background: #0a234f;
    padding: 18px 10px;
    display: flex;
    align-items: center;
}

.staff-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 212, 170, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.staff-icon i {
    color: #00d4aa;
}

.staff-position {
    color: #00d4aa;
    min-width: 72px;
    font-size: 15px;
    font-weight: 700;
}

.staff-info strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.staff-info span {
    color: #9fb0c9;
    font-size: 14px;
}

@media (max-width:991px) {

    .org-title {
        font-size: 40px;
    }

    .staff-area {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .office-top {
        padding: 25px;
    }

    .office-body {
        padding: 25px;
    }
}

/* 모바일 전용 스타일 */
@media (max-width: 576px) {

    .org-title {
        font-size: 28px;
        /* 조직도 제목 축소 */
    }

    .org-subtitle {
        font-size: 14px;
    }

    .office-top h3 {
        font-size: 20px;
        /* HEAD OFFICE / BRANCH OFFICE */
    }

    .office-top span {
        font-size: 16px;
    }

    .info-title {
        font-size: 13px;
    }

    .info-row {
        font-size: 14px;
        /* 주소 및 연락처 글자 크기 축소 */
    }

    .contact-wrap {
        font-size: 14px;
        gap: 8px;
    }

    .staff-position {
        font-size: 13px;
    }

    .staff-info strong {
        font-size: 14px;
    }

    .staff-info span {
        font-size: 12px;
    }

    .staff-box {
        padding: 12px;
        /* 카드 내부 여백 축소 */
    }

    .office-body {
        padding: 18px;
        /* 본문 여백 축소 */
    }
}