/* 전체 영역 */
.instructor_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Pretendard', sans-serif;
}

/* 상단 소개 */
.intro_box {
    text-align: center;
    margin-bottom: 80px;
}

.intro_box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro_box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}


/* 강사 박스 공통 */
.instructor_box {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
}

/* 대표 강사 (텍스트 왼쪽 / 이미지 오른쪽) */
.instructor_box.type1 {
    flex-direction: row !important;
}

/* 팀장 강사 (이미지 왼쪽 / 텍스트 오른쪽) */
.instructor_box.type2 {
    flex-direction: row-reverse !important;
}


/* 텍스트 영역 */
.instructor_box .text {
    flex: 1;
}

.instructor_box h4 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.instructor_box .sub {
    font-size: 1.5em;
	    color: #555;

    font-weight: 600;
    color: #888;
    margin-bottom: 0px;
}

.instructor_box .text p {
    font-size: 1.5em;
    
    margin-bottom: 05px;
    color: #444;
}

/* 리스트 */
.instructor_box ul {
    margin: 20px 0;
    padding-left: 15px;
}

.instructor_box ul li {
    margin-bottom: 0px;
   font-size: 1.2em;
    color: #333;
}


/* 정보 블록 */
.instructor_box .info {
    margin-top:0px;
}

.instructor_box .info strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0px;
    color: #111;
}

.instructor_box .info p {
   font-size: 1.2em;
    color: #555;
}


/* 이미지 */
.instructor_box .img {
    flex-shrink: 0;
}

.instructor_box .img img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    display: block;
}


/* 기관 영역 */
.client_logo {
    text-align: center;
    margin-top: 60px;
}

.client_logo h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.logo_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.logo_list span {
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 50px;
   font-size: 1.2em;
    background: #fafafa;
    transition: all 0.3s;
}

.logo_list span:hover {
    background: #111;
    color: #fff;
}


/* =========================
   반응형 (핵심)
========================= */
@media (max-width: 1024px) {
    .instructor_box {
        gap: 40px;
    }

    .instructor_box .img img {
        max-width: 320px;
    }
}

@media (max-width: 768px) {

    .intro_box h3 {
        font-size: 26px;
    }

    .instructor_box {
        flex-direction: column !important;
        text-align: center;
    }

    .instructor_box.type1,
    .instructor_box.type2 {
        flex-direction: column !important;
    }

    .instructor_box .img img {
        max-width: 100%;
    }

    .instructor_box .text {
        text-align: center;
    }
}