@charset "utf-8";

/* =========================================================
   Presentation 전용 MAIN CSS
   - 섹션3(#sec_usauv) : main.css의 대학 탭/카드 레이아웃 이식
   - 섹션6(#sec_interviews) : main.css의 후기(maq_slider) 이식 + 모바일 overflow 방지
   - 섹션7(신청폼) : peap_form.css를 강제로 적용 (import) + presentation 톤 보정
   ========================================================= */

/* ✅ 신청폼 CSS를 presentation에서도 강제로 적용 */
@import url("/peapacademy/assets/css/peap_form.css");

/* ---------------------------------------------------------
   0) 모바일 가로 스크롤(overflow) 방지 — 가장 중요
   --------------------------------------------------------- */
html, body {
  width: 100%;
  overflow-x: hidden; /* 가로 스크롤/밀림 방지 */
}

#container, main, section, .inr_box, .hPad50 {
  max-width: 100%;
}

/* presentation 페이지에서 공통 패딩(모바일 타이트) */
@media (max-width: 768px) {
  .hPad50 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ---------------------------------------------------------
   1) 섹션3: IEEA 협력 미국대학 (#sec_usauv)
   --------------------------------------------------------- */
#sec_usauv {
  background: #f6f6f6;
}

#sec_usauv .sec_tit {
  text-align: left;
  margin-bottom: 5px;
}

#sec_usauv .sec_tit em.auto {
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
}

#sec_usauv .sec_tit h2 strong {
  text-align: left !important;
  display: inline-block;
  font-size: 35px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #061230;
  line-height: 1.25;
}

/* 탭 헤더 */
#sec_usauv .tabs {
  margin-top: 20px;
}

#sec_usauv .tabs .tabs_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

#sec_usauv .tabs .tabs_head .tab {
  flex: 1 0 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #061230;
  background: #fff;
  border: 0;
  cursor: pointer;
  user-select: none;
}

#sec_usauv .tabs .tabs_head .tabs_head_active {
  color: #fff;
  background: #061230;
}

/* 탭 컨텐츠 */
#sec_usauv .tabs .tabs_cont {
  margin-top: 18px;
  padding: 0;
  border: 0;
}

#sec_usauv .tabs .tabs_item {
  display: none;
}

#sec_usauv .tabs .tabs_item.tabs_cont_active {
  display: block;
}

/* 대학 리스트 카드 */
#sec_usauv .univ_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

#sec_usauv .univ_list li {
  width: calc(33.3333% - 20px);
}

#sec_usauv .univ_list li .thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

#sec_usauv .univ_list li .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

#sec_usauv .univ_list li .thumb .label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px 20px;
  background: #fff;
  border-radius: 0 0 10px 0;
}

#sec_usauv .univ_list li .thumb .label img {
  display: block;
}

#sec_usauv .univ_list li .info {
  padding-top: 10px;
}

#sec_usauv .univ_list li .info strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #061230;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

#sec_usauv .univ_list li .info p {
  margin: 0;
  font-size: 13px;
  color: rgba(6, 18, 48, 0.75);
  line-height: 1.35;
}

/* 섹션3 모바일 최적화 */
@media (max-width: 768px) {
  #sec_usauv .sec_tit h2 strong {
    font-size: 22px;
  }

  #sec_usauv .tabs .tabs_head .tab {
    font-size: 12px;
    height: 46px;
    padding: 0 6px;
    text-align: center;
  }

  #sec_usauv .univ_list {
    gap: 14px 14px;
  }

  #sec_usauv .univ_list li {
    width: calc(50% - 7px);
  }

  #sec_usauv .univ_list li .info strong {
    font-size: 14px;
  }

  #sec_usauv .univ_list li .info p {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------
   2) 섹션6: 후기/교육철학 (#sec_interviews)
   - 모바일 가로 스크롤 방지: 슬라이드 폭/패딩 제한
   --------------------------------------------------------- */
#sec_interviews .inr_box {
  padding-bottom: 60px;
}

#sec_interviews .sec_tit {
  text-align: left;
}

#sec_interviews .sec_tit h2 strong {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #061230;
  line-height: 1.25;
}

#sec_interviews .sec_tit .desc {
  max-width: 980px;
  margin: 18px auto 0;
  font-size: 15px;
  color: rgba(6, 18, 48, 0.78);
  line-height: 1.7;
}

#sec_interviews .maq_slider {
  padding-bottom: 120px;
  overflow: hidden; /* ✅ 가로 넘침 차단 */
}

#sec_interviews .maq_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

#sec_interviews .maq_slider .swiper-slide {
  position: relative;
  display: block;
  width: 500px;            /* PC 기본 */
  max-width: calc(100vw - 32px);
  padding: 50px 60px;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}

#sec_interviews .maq_slider .swiper-slide p {
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

#sec_interviews .maq_slider .swiper-slide .writer {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

#sec_interviews .maq_slider .swiper-slide img {
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* 섹션6 모바일: 슬라이드 폭/패딩 줄여서 가로 스크롤 원천 차단 */
@media (max-width: 768px) {
  #sec_interviews .sec_tit h2 strong {
    font-size: 22px;
  }

  #sec_interviews .sec_tit .desc {
    font-size: 13px;
    padding: 0 6px;
  }

  #sec_interviews .maq_slider {
    padding-bottom: 90px;
  }

  #sec_interviews .maq_slider .swiper-slide {
    width: min(86vw, 360px);  /* ✅ 화면 안에 들어오게 */
    padding: 26px 20px;
    border-radius: 12px;
  }

  #sec_interviews .maq_slider .swiper-slide p {
    font-size: 15px;
  }

  #sec_interviews .maq_slider .swiper-slide .writer {
    font-size: 12px;
  }
}#sec_interviews {background:#F6F6F6;}
#sec_interviews .inr_box {padding-bottom: 100px;}
.maq_slider {padding-bottom:200px;}
.maq_slider .swiper-wrapper {transition-timing-function: linear !important;}
.maq_slider .swiper-wrapper .swiper-slide {position: relative;display: flex;justify-content: center;flex-direction: column;align-items: center;text-align: center;width:500px;height:350px;padding: 50px 60px;border-radius: 10px;overflow: hidden;}
.maq_slider .swiper-wrapper .swiper-slide p {font-size: 24px;color:#fff;font-weight: 700;margin-bottom: 15px;line-height: 1.3;}
.maq_slider .swiper-wrapper .swiper-slide .writer {font-size:18px;color:#fff;font-weight: 500;}
.maq_slider .swiper-wrapper .swiper-slide img {display: block;position: absolute;left: 0;top: 0;width: 100%;height: 100%;object-fit: cover;z-index: -1}


.rd_img {border-radius: 10px;overflow: hidden;margin-top: 60px;font-size: 0;}
.rd_img_box {position: relative;}
.one_box {border-radius: 10px;overflow: hidden;}
.abs_cont {position: absolute;left: 0;bottom: -200px; width: 100%; z-index: 1;}
.one_box .abs_cont {left: auto;right: 0;bottom: 0;width:auto;}
.abs_cont ul {display: flex;justify-content:center;align-items: stretch;padding: 0 50px;}
.one_box .abs_cont ul {padding: 0;}
.abs_cont ul li {display: flex;flex-direction: column;justify-content: center;flex:1 0 0;background:#fff;color: #000;border:1px solid #e5e5e5;border-radius: 10px;padding:50px 30px;text-align: center;margin: 0 5px;}
.one_box .abs_cont ul li {padding: 50px 60px;border-radius:10px 0 0 0;border: none;text-align: left;margin: 0;background:#212d4b;}
.abs_cont ul li .txt_sm {display: block;font-size: 20px;font-weight: 600;}
.abs_cont ul li .txt_m {display: block;font-size:24px;font-weight: 600;}
.one_box .abs_cont ul li .txt_m {color:#fff;}
.abs_cont ul li strong {font-size: 28px;font-weight: 800;margin-top:10px;line-height: 1.3}
.abs_cont ul li strong span {display: inline-block;font-size: 60px;font-weight: 800;line-height: 1;letter-spacing: -0.02em;color:#9369ff;}
.one_box .abs_cont ul li strong span {color:#ddff00;}
.abs_cont ul li em {display: block; margin-top: 5px; font-size: 24px;font-weight: 700;}
.one_box .abs_cont ul li em {font-size: 20px;color:#fff;font-weight: 500;}
.cont_tit {display: flex; align-items: center;margin-top: 60px;color:#fff;}
.cont_tit.dark {color:#000;}
.cont_tit strong {position: relative;display: inline-block;font-size: 50px; font-weight: 800;padding-left: 20px;line-height: 1;margin-right:20px;}
.cont_tit strong:before {content: "";position: absolute; left: 0; top:0; display: block; width: 10px; height: 10px; border-radius: 50%;background:#f33c5f;}
.cont_tit em {position: relative;display: inline-block;font-size: 22px; letter-spacing: 0;padding-left:70px;}
.cont_tit em:before {content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);display: inline-block;width:50px;height: 1px;background:rgba(255,255,255,0.3);}
.cont_desc {font-size: 22px; color:#fff;margin-top: 20px;padding-left: 20px;}
#sec_interviews .cont_list {margin-top: 40px;}
#sec_interviews .cont_list ul {display: flex;gap:0 30px;}
#sec_interviews .cont_list ul li {position: relative;display: flex;align-items: center;justify-content: center;flex:1 1 auto;width: 33.3333%;height: 250px; text-align: center;border-radius: 10px;}
#sec_interviews .cont_list ul li + li:before {content: "";position: absolute;left:-40px;top: 50%;transform: translateY(-50%);width: 50px; height: 50px; border-radius: 50%;background:#0d1426 url("../images/icon/plus_b.png") no-repeat center center;}
#sec_interviews .cont_list ul.cp_list li + li:before {background-image:url("../images/icon/arr_small_b.png")}
#sec_interviews .cont_list ul li p {font-size: 26px;font-weight: 700;line-height: 1.2;letter-spacing: 0;padding: 40px;}
#sec_interviews .cont_list ul li p em {display: block; font-size: 22px;font-weight: 600;}
#sec_interviews .cont_list ul li p strong {display: block;font-size: 30px; font-weight: 800;}

.course_half {margin-top: 100px;}
.course_half ul {display: flex;justify-content: space-between;gap:50px;align-items: stretch;}
.course_half ul li {text-align: center;}
.course_half ul li strong {position: relative;display: inline-block; font-size: 26px;font-weight:700;background:#f33c5f;padding: 15px 30px;border-radius:10px;color:#fff;}
.course_half ul li:nth-child(2) strong {background:#475782;}
.course_half ul li strong:before {content: "";position: absolute;left: 50%;transform: translateX(-50%);bottom: -10px;width: 0;height: 0;display: block;border-top:10px solid #f33c5f;border-left: 10px solid transparent;border-right: 10px solid transparent;}
.course_half ul li:nth-child(2) strong:before {border-top-color:#475782}
.course_half ul li .img {margin-top: 50px;}

@media screen and (max-width:1024px){
  .cont_tit strong {font-size: 46px;padding-left: 15px;}
  .cont_tit em {font-size: 18px;}
  .cont_desc {font-size: 18px;}
  #sec_interviews .cont_list ul li p {font-size: 22px;padding:30px;}
  #sec_interviews .cont_list ul li p em {font-size: 18px;}
  #sec_interviews .cont_list ul li p strong {font-size: 26px;}

  .maq_slider .swiper-wrapper .swiper-slide {width: 400px;height: 300px;padding: 40px 50px;}
  .maq_slider .swiper-wrapper .swiper-slide p {font-size: 20px;}
  .maq_slider .swiper-wrapper .swiper-slide .writer {font-size: 16px;}
  
  .one_box .abs_cont ul li {padding:40px 45px;}
  .abs_cont ul li .txt_m {font-size:20px;}
  .one_box .abs_cont ul li em {font-size:18px;}
  .abs_cont ul li strong span {font-size:50px;}
  .course_half ul {gap: 30px;}
  .course_half ul li strong {font-size:20px;padding: 15px 20px;min-height:60px;}
}
@media screen and (max-width:768px){
  .sec_tit .desc {font-size: 18px;}
  .m_use_img {height: 300px}
  .m_use_img img {display: block;width: 100%;height: 100%;object-fit: cover;}
  .cont_tit strong {font-size: 40px;}
  .cont_tit em {font-size:16px;}
  #sec_interviews .cont_list ul {gap: 0 20px;}
  #sec_interviews .cont_list ul li {height:200px;}
  #sec_interviews .cont_list ul li + li:before {left: -30px;width: 40px;height: 40px;background-size: 12px auto;}
  #sec_interviews .cont_list ul li p {font-size: 20px;padding: 25px;}
  #sec_interviews .cont_list ul li p em {font-size: 16px;}
  #sec_interviews .cont_list ul li p strong {font-size: 22px;}

  .maq_slider {padding-bottom: 150px;}
  .maq_slider .swiper-wrapper .swiper-slide {width: 300px;height:280px;padding: 30px 40px;}
  .maq_slider .swiper-wrapper .swiper-slide p {font-size:18px;}
  .maq_slider .swiper-wrapper .swiper-slide .writer {font-size: 15px;}
  
  .abs_cont {position:static;border-radius:10px;margin-top: 50px;overflow: hidden;}
  .course_half {margin-top: 80px;}
  .course_half ul {flex-direction: column;}
}
@media screen and (max-width:640px){
  #sec_interviews .cont_list ul {flex-direction: column;gap: 20px 0;}
  #sec_interviews .cont_list ul li {width: 100%;height: auto;}
  #sec_interviews .cont_list ul li + li:before {left: 50%;top:-30px;transform: translateX(-50%);}
  #sec_interviews .cont_list ul.cp_list li + li:before {transform:translateX(-50%) rotate(90deg);transform-origin: center;}
}
@media screen and (max-width:480px){
  .sec_tit .desc {font-size: 16px;}
  .cont_tit strong {font-size: 30px;}
  .cont_tit em {font-size: 15px;}
  .cont_desc {font-size: 16px;}

  .maq_slider .swiper-wrapper .swiper-slide {width: 250px;height: 220px;padding: 25px 25px;}
  .maq_slider .swiper-wrapper .swiper-slide p {font-size: 16px;}
  .maq_slider .swiper-wrapper .swiper-slide .writer {font-size: 14px;line-height: 1.2;}
  
  .one_box .abs_cont ul li {padding: 35px 40px;}
  .abs_cont ul li strong span {font-size:46px;}
  .one_box .abs_cont ul li em {font-size: 16px;}
  .course_half {margin-top: 60px;}
  .course_half ul li .img {margin-top: 30px;}
  .course_half ul li strong {font-size: 18px;min-height:50px;padding: 10px 20px}
  .course_half ul li strong:before {bottom: -6px;border-top: 6px solid #f33c5f;border-left: 6px solid transparent;border-right: 6px solid transparent;}
  .rd_img {margin-top: 40px;}
}

/* ------------------------------------
   mainSec_05 (sec_interviews) 여백 정리
-------------------------------------*/
#sec_interviews .inr_box {
  padding-bottom: 40px !important;  /* 기존 100px → 40px 감소 */
}

.maq_slider {
  padding-bottom: 60px !important; /* 기존 200px → 60px */
}

/* 모바일 최적화 */
@media screen and (max-width: 768px) {
  #sec_interviews .inr_box {
    padding-bottom: 20px !important;
  }
  .maq_slider {
    padding-bottom: 40px !important;
  }
}

/* 모바일에서 maq 슬라이더 가로 스크롤/튕김 방지 */
@media screen and (max-width: 768px) {

  /* 페이지 전체는 가로 스크롤 막기 (이미 있으면 유지) */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* 슬라이더 컨테이너는 화면 폭 안에만 */
  #sec_interviews,
  .maq_slider,
  .maq_slider .swiper-container,
  .swp_maq {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    touch-action: pan-y;   /* 가로 제스처는 슬라이더만, 페이지는 세로만 */
  }

  /* 슬라이드 하나 크기 – 화면 안에서만 움직이게 */
  .maq_slider .swiper-wrapper .swiper-slide,
  .swp_maq .swiper-wrapper .swiper-slide {
    width: 80vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
}

/* 인터뷰 슬라이더 컨테이너 – 가로 넘침 자르기 */
.maq_slider,
.swp_maq {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* mainSec_05 – 인터뷰 섹션 텍스트 튜닝 */
#sec_interviews .sec_tit .desc {
  font-size: 20px;      /* PC 폰트 크기 */
  font-weight: 400;     /* 굵기 (300~700 사이로 조절 가능) */
  line-height: 1.6;     /* 줄간격 */
}

/* 태블릿 이하 */
@media screen and (max-width: 768px) {
  #sec_interviews .sec_tit .desc {
    font-size: 18px;
    font-weight: 400;
  }
}

/* 모바일 480 이하 */
@media screen and (max-width: 480px) {
  #sec_interviews .sec_tit .desc {
    font-size: 16px;
    font-weight: 400;
  }
}


/* ---------------------------------------------------------
   3) 섹션7: presentation/apply.php 신청폼 (peap_form.css 기반)
   - 포함(inlcude)로 들어올 때도 자연스럽게 보이게 톤만 보정
   --------------------------------------------------------- */
#peapApply.peap-apply-section {
  background: #f6f7fb; /* presentation 톤 */
}

#peapApply .peap-apply-inner {
  margin-top: 20px;
}

/* apply.php가 include로 들어오면 내부 max-width가 깨질 수 있어 안전장치 */
#peapApply .peap-apply-inner,
#peapApply form {
  max-width: 100%;
}

/* 버튼이 하단 고정바에 가려지지 않도록 마지막 여백 확보 */
#peapApply 
  padding-bottom: 120px;
}

/* 0) 혹시라도 가로 스크롤 생기는 문제(섹션6 때문에 흔함) 원천 차단 */
html, body {
  overflow-x: hidden !important;
}

/* ✅ presentation/index.php 상단 헤더만 숨김 (apply.php 내부 헤더엔 영향 없음) */
body > header {
  display: none !important;
}

body > header + * {
  margin-top: 0 !important;
}

/* 하단 고정 버튼(3개) 때문에 콘텐츠가 가려지지 않게 여유 확보 */
body {
  padding-bottom: 90px; /* bottom-bar 높이보다 조금 크게 */
}


/* 3) 섹션7: 신청폼을 "박스 없이" 화면 가로 꽉 차게
   - 핵심: .inr_box / .hPad50의 max-width, padding, box를 무력화 */
#sec_apply,            /* 섹션7이 이런 id라면 */
#sec_applyform,        /* 혹시 다른 id로 잡혀있을 가능성 대비 */
#sec_apply_form {
  background: transparent !important;
}

/* 섹션7 내부 레이아웃 제한 제거 */
#sec_apply .hPad50,
#sec_applyform .hPad50,
#sec_apply_form .hPad50 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#sec_apply .inr_box,
#sec_applyform .inr_box,
#sec_apply_form .inr_box {
  max-width: none !important;
  padding: 0 !important;
}

/* apply.php를 감싸는 래퍼(대표님 쪽에서 쓰는 클래스가 이거였던 케이스가 많음) */
.peap-apply-inner {
  max-width: none !important;
  width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 16px 20px !important; /* 좌우만 살짝 여백 */
}

/* 폼 자체가 가운데 박스처럼 보이는 UI 제거(이미지에서 보이는 흰 박스 느낌) */
.peap-apply-card,
.peap-form-card,
.form-card,
.apply-card {
  max-width: none !important;
  width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* CTA 버튼: 중앙 정렬 + 자연스럽게 */
.peap-apply-bottom,
.peap-form-bottom,
.form-bottom {
  text-align: center !important;
}

.peap-apply-btn,
.peap-form-btn,
.form-btn {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 혹시 버튼이 100%로 늘어나서 “가운데 느낌”이 안 나는 경우 대비 */
@media (max-width: 768px) {
  .peap-apply-btn,
  .peap-form-btn,
  .form-btn {
    width: min(92vw, 520px) !important;  /* 화면에 자연스럽게 크게 */
  }
}

/* ==========================================================
   SECTION 7 OVERRIDE (presentation 전용)
   대상: <section id="peapApply" class="peap-apply-section">
   목적:
   1) 박스 UI 완전 제거
   2) 섹션 높이 = 폼 높이
   3) 헤더(폼 내부 타이틀 카드)만 제거
   4) CTA 버튼 모바일 중앙 + 가로 초과 방지
   5) 불필요한 여백 제거
   ========================================================== */

/* 0. 섹션 자체 리셋 */
#peapApply.peap-apply-section {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 1. 섹션7 내부에서만 박스/카드 UI 완전 제거 */
#peapApply *,
#peapApply *::before,
#peapApply *::after {
  box-shadow: none !important;
}

#peapApply .apply-card,
#peapApply .form-card,
#peapApply .peap-apply-card,
#peapApply .peap-form-card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* 2. inr_box / hPad50 레이아웃 무력화 (섹션 길이 = 폼 크기) */
#peapApply .hPad50,
#peapApply .inr_box {
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: none !important;
}

/* ✅ 신청폼 헤더 다시 활성화 */
#peapApply .apply-head,
#peapApply .form-head,
#peapApply .peap-apply-head {
  display: block !important;
  margin-bottom: 16px;
}

/* 4. apply.php 래퍼 – 가로 100% */
#peapApply .peap-apply-inner,
#peapApply form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* 모바일에서 좌우만 최소 여백 */
@media (max-width: 768px) {
  #peapApply .peap-apply-inner {
    padding: 0 16px 20px !important;
  }
}

/* 5. CTA 버튼 정리 (가운데 + 가로 초과 방지) */
#peapApply .peap-apply-bottom,
#peapApply .peap-form-bottom,
#peapApply .form-bottom {
  text-align: center !important;
}

#peapApply .peap-apply-btn,
#peapApply .peap-form-btn,
#peapApply button[type="submit"] {
  display: flex !important;
  justify-content: center;
  align-items: center;

  margin: 10px auto 0 !important;
  width: min(92vw, 520px) !important;
  max-width: 100% !important;

  box-sizing: border-box !important;
}

/* 6. 섹션7 불필요한 상·하 여백 제거 */
#peapApply .form-group,
#peapApply .form-row {
  margin-bottom: 10px !important;
}

/* 7. 하단 고정 버튼 영역 때문에 폼이 가려지지 않도록 여유 */
#peapApply {
  padding-bottom: 40px !important;
}


#sec_usauv .sec_tit {
  align-items: flex-start !important;
}
#sec_usauv .sec_tit h2,
#sec_usauv .sec_tit h2 strong{
  width:100%;
  font-size: 36px;
  font-weight: 900;

}


/* ==========================================================
 * mainSec_05 (#sec_interviews) — 모바일 전용 최소 수정본
 * (좌우 여백 증가 / 가운데 정렬 현상 방지)
 * ========================================================== */
@media screen and (max-width: 768px) {

  /* 제목(메인 strong) — 정렬 유지 + 폰트만 조절 */
  #sec_interviews .sec_tit h2 strong {
    font-size: 22px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    color: #071733 !important;
    text-align: left !important;       /* ← 중앙정렬 방지 */
    display: inline-block !important;   /* ← 블록변환 금지, 텍스트 흐름 유지 */
  }

  /* 강조 txt_orange — 왼쪽 정렬 유지 */
  #sec_interviews .sec_tit h2 strong .txt_orange {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #ff5a00 !important;
    margin-top: 4px !important;
    text-align: left !important;
    display: inline-block !important;   /* block 사용하면 중앙정렬 오염 → inline 유지 */
  }

  /* 설명문 desc */
  #sec_interviews .sec_tit .desc {
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #444 !important;
    font-weight: 400 !important;
    text-align: left !important;
    margin-top: 14px !important;
  }

  /* 제목 블록 자체 — 여백만 약간 조절 (좌우 건드리지 않음) */
  #sec_interviews .sec_tit {
    margin-bottom: 22px !important;
  }
}

/* ----------------------------------------------------------
 * 480px 이하 버전
 * ---------------------------------------------------------- */
@media screen and (max-width: 480px) {

  #sec_interviews .sec_tit h2 strong {
    font-size: 22px !important;
  }

  #sec_interviews .sec_tit h2 strong .txt_orange {
    font-size: 26px !important;
  }

  #sec_interviews .sec_tit .desc {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }
}

@media screen and (max-width: 768px) {
  #sec_interviews .desc .m-hide {
    display: none !important;
  }
}

/* ==========================================
 * txt_orange — 줄마다 50% 형광펜 (한 줄/두 줄 완전 동일)
 * ========================================== */
.txt_line {
  background-image: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(255, 180, 0, 0.55) 50%
  );
  background-repeat: no-repeat;

  /* 두 줄로 넘어가도 각 줄마다 칠해주는 핵심 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  display: inline;
  padding: 0 2px;
  border-radius: 2px;
}

/* ==========================================================
   SECTION 6 (sec_interviews) – Swiper 슬라이더 안정화/정상화
   - PC: 3장 자연스럽게 보이도록 (auto + gap)
   - Mobile: 슬라이드 간 여백 확보 + 끝 밀면 사라짐(overflow/transform) 완화
   ========================================================== */

/* 컨테이너 넘침 방지 (슬라이더가 화면 밖으로 삐져나가며 레이아웃 깨는 현상 방지) */
#sec_interviews .maq_slider,
#sec_interviews .swp_maq,
#sec_interviews .swp_maq .swiper-wrapper {
  overflow: visible !important;
}

/* Swiper가 강제로 inline-style transform/width를 잡을 때도 깨지지 않게 */
#sec_interviews .swp_maq {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important; /* 바깥은 숨기되, wrapper는 정상 이동 */
}

/* PC/공통: 슬라이드는 고정폭으로 “자연스럽게” */
#sec_interviews .swp_maq .swiper-slide {
  width: 420px !important;          /* ✅ PC에서 너무 커서 한 장만 보이던 문제 해결 */
  height: 320px !important;
  padding: 40px 44px !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;

  overflow: hidden !important;
}

/* PC에서 슬라이드 텍스트 잘림 방지 (이미지 자체가 배경이므로) */
#sec_interviews .swp_maq .swiper-slide p {
  max-width: 100%;
  word-break: keep-all;
  padding: 0 10px;
}

/* ✅ “슬라이드 간 여백” = wrapper gap으로 처리 (모바일 포함) */
#sec_interviews .swp_maq .swiper-wrapper {
  gap: 28px !important;              /* 모바일에서 슬라이드가 딱 붙는 문제 해결 */
}

/* 태블릿 이하 */
@media (max-width: 1024px) {
  #sec_interviews .swp_maq .swiper-slide {
    width: 360px !important;
    height: 280px !important;
    padding: 30px 30px !important;
  }
  #sec_interviews .swp_maq .swiper-wrapper {
    gap: 18px !important;
  }
}

/* 모바일 */
@media (max-width: 768px) {
  #sec_interviews .swp_maq .swiper-slide {
    width: 78vw !important;          /* ✅ 화면에 자연스럽게 1장 + 다음장 일부 보임 */
    max-width: 360px !important;
    height: auto !important;         /* 모바일에서 높이 강제하면 튕김/사라짐 유발 가능 */
    min-height: 240px !important;
    padding: 26px 20px !important;
  }
  #sec_interviews .swp_maq .swiper-wrapper {
    gap: 14px !important;
  }
}

/* 아주 작은 폰 */
@media (max-width: 480px) {
  #sec_interviews .swp_maq .swiper-slide {
    width: 84vw !important;
    min-height: 220px !important;
  }
}

/* ==========================================================
   sec_usauv 타이틀 em.auto “라벨 박스” + 모바일 폰트 조절
   ========================================================== */

/* 1) em.auto: 텍스트보다 조금 크게 배경 박스 + 둥근 모서리 */
#sec_usauv .sec_tit em.auto{
  display: inline-flex;          /* 패딩 적용/정렬 안정 */
  align-items: center;
  padding: 8px 14px;             /* ✅ 텍스트보다 조금 크게 */
  border-radius: 10px;           /* ✅ 약간 둥글게 */
  background: rgba(6, 18, 48, 0.08);  /* 기본 톤(원하면 색만 바꾸면 됨) */
  color: #061230;
  line-height: 1;                /* 박스 높이 예쁘게 */
  letter-spacing: 0;             /* 영어 uppercase 느낌 없으면 0 권장 */
  text-transform: none;          /* 문구가 한글이라면 none이 자연스러움 */
  opacity: 1;                    /* 배경박스 쓰니 흐림 제거 */
}

/* 2) 모바일 폰트 크기 조절: em / strong 모두 별도 제어 */
@media (max-width: 768px){
  #sec_usauv .sec_tit em.auto{
    font-size: 14px;             /* ✅ 대표님이 여기만 바꾸면 됨 */
    padding: 7px 12px;
    border-radius: 9px;
  }

  #sec_usauv .sec_tit h2 strong{
    font-size: 26px;             /* ✅ 모바일 타이틀 크기 */
    line-height: 1.25;
  }
}

@media (max-width: 480px){
  #sec_usauv .sec_tit em.auto{
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
  }

  #sec_usauv .sec_tit h2 strong{
    font-size: 24px;
  }
}

/* sec_usauv 라벨 스타일 – 프리미엄 네이비 */
#sec_usauv .sec_tit em.auto{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 12px;

  background: #E9F0FF;   /* 연한 블루 */
  color: #1F3A8A;        /* 딥 네이비 */

  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* 모바일 */
@media (max-width: 768px){
  #sec_usauv .sec_tit em.auto{
    font-size: 14px;
    padding: 7px 14px;
  }
}
@media (max-width: 480px){
  #sec_usauv .sec_tit em.auto{
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* 섹션3: em(auto) ↔ h2 간격 축소 */
#sec_usauv .sec_tit em.auto{
  margin-bottom: 6px;   /* 기존 10px → 6px */
}

#sec_usauv .sec_tit h2{
  margin-top: 0;        /* 혹시 기본 margin이 있으면 제거 */
}

@media (max-width: 768px){
  #sec_usauv .sec_tit em.auto{
    margin-bottom: 1px;
  }
}
@media (max-width: 768px){
  #sec_usauv .sec_tit em.auto{
    margin-bottom: 1px !important;
  }

  #sec_usauv .sec_tit h2{
    margin-top: 0 !important;
  }
}

@media (max-width: 768px){
  #sec_usauv .sec_tit h2{
    margin-top: 0 !important;
  }

  #sec_usauv .sec_tit h2 strong{
    line-height: 1.2;
    display: block;
  }
}

/* form-row 간격의 핵심: gap 조절 (presentation 전용) */
#peapApply .peap-form-grid{
  gap: 8px !important; /* 기본 14px → 8px */
}

@media (min-width: 1025px){
  #peapApply .peap-form-grid{
    row-gap: 10px !important;    /* PC grid row-gap 줄이기 */
    column-gap: 20px !important; /* 좌우도 너무 넓으면 조절 */
  }
}


/* ==========================================================
   sec_interviews 타이틀: em.auto 줄바꿈 + 라벨박스 + 모바일 폰트
   ========================================================== */

/* 0) h2 안에서 em / strong을 줄바꿈 */
#sec_interviews .sec_tit h2{
  margin: 0; /* 기본 h2 마진이 있으면 정리 */
}

#sec_interviews .sec_tit h2 em.auto{
  display: inline-flex;      /* 라벨 박스 */
  align-items: center;
  width: fit-content;        /* 박스가 글자만큼만 */
  margin: 0 0 8px 0;         /* ✅ em 아래 여백 (원하면 4~10px로 조절) */
  padding: 8px 16px;         /* ✅ 텍스트보다 조금 크게 */
  border-radius: 12px;       /* ✅ 약간 둥글게 */

  background: #E9F0FF;       /* 섹션3과 같은 톤 */
  color: #1F3A8A;            /* 딥 네이비 */
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 1;
}

/* strong은 무조건 다음 줄로 */
#sec_interviews .sec_tit h2 > strong{
  display: block;
  margin: 0;
}

/* 1) 모바일 폰트 조절 */
@media (max-width: 768px){
  #sec_interviews .sec_tit h2 em.auto{
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 10px;
    margin-bottom: 6px;
  }

  #sec_interviews .sec_tit h2 > strong{
    font-size: 22px;      /* 필요시 조절 */
    line-height: 1.25;
  }
}

@media (max-width: 480px){
  #sec_interviews .sec_tit h2 em.auto{
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 9px;
    margin-bottom: 5px;
  }

  #sec_interviews .sec_tit h2 > strong{
    font-size: 20px;      /* 필요시 조절 */
  }
}


/* =========================
   섹션7 헤더 타이틀 정렬
   ========================= */
.peap-apply-head .apply-title{
  display: flex;
  align-items: center;     /* 세로 중앙 정렬 */
  gap: 10px;               /* 이모지 ↔ 텍스트 간격 */
}

.peap-apply-head .apply-title h1{
  margin: 0;               /* h1 기본 margin 제거 (핵심) */
  line-height: 1.2;
}

/* =========================
   개인정보동의 ↔ CTA 여백 축소
   ========================= */

/* 개인정보 동의 하단 여백 */
.form-row.agree-row{
  margin-bottom: 8px !important;   /* 기존보다 줄임 */
}

/* CTA 버튼 상단 여백 */
.peap-apply-bottom{
  margin-top: 12px !important;     /* 기존 24px → 12px */
}
