@charset "utf-8";

/* header */
#header .gnb ul li.depth01 span{
  color:#fff;
}

/* 공용 레이아웃 */
.section_inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:0 80px;
  box-sizing:border-box;
}

/* 공용 타이틀 */
.section_head{
  margin-bottom:38px;
}

.section_title_wrap{
  width:100%;
}

.section_eyebrow{
  margin:0 0 18px;
  font-size:14px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.22em;
  color:rgba(17, 24, 39, .48);
}

.section_title{
  margin:0;
  font-size:54px;
  font-weight:700;
  line-height:1.26;
  letter-spacing:-.04em;
  color:#111827;
  word-break:keep-all;
}

.section_desc{
  max-width:760px;
  margin:24px 0 0;
  font-size:18px;
  font-weight:400;
  line-height:1.9;
  color:#4b5563;
  word-break:keep-all;
}

/* 공용 버튼 */
.common_btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  height:56px;
  padding:0 24px;
  box-sizing:border-box;
  border:1px solid #d8dfeb;
  border-radius:999px;
  background:#fff;
  font-size:15px;
  font-weight:600;
  color:#111827;
  text-decoration:none;
  transition:all .25s ease;
  cursor:pointer;
}

.common_btn:hover{
  transform:translateY(-2px);
}

.common_btn_dark{
  background:#111827;
  border-color:#111827;
  color:#fff;
}

.common_btn_dark:hover{
  background:#a98c48;
  border-color:#a98c48;
  color:#fff;
}

.common_btn_light:hover{
  border-color:#111827;
  background:#111827;
  color:#fff;
}

/* 공용 태그형 버튼 */
.common_chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 14px;
  box-sizing:border-box;
  border-radius:999px;
  background:#f3f6fb;
  font-size:14px;
  font-weight:600;
  color:#4b5563;
}

/* 공용 카드 */
.common_card{
  border:1px solid #e6ebf2;
  border-radius:28px;
  background:#fff;
  box-sizing:border-box;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.common_card:hover{
  transform:translateY(-6px);
  border-color:#d7e3ff;
  box-shadow:0 24px 40px rgba(17, 24, 39, .08);
}

/* 공용 블러 버튼/오버레이 */
.common_glass{
  background:rgba(255, 255, 255, .12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

/* 공용 리스트 */
.common_reset_list{
  margin:0;
  padding:0;
  list-style:none;
}

/* 공용 이미지 */
.common_img_cover{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 공용 텍스트 */
.common_word_keep{
  word-break:keep-all;
}

.common_text_ellipsis{
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* 공용 모션 */
.motion_item{
  opacity:0;
  transform:translateY(40px);
}

.is_visible .motion_item{
  opacity:1;
  transform:translateY(0);
  transition:opacity .7s ease, transform .7s ease;
}

.motion_item_01{
  transition-delay:.1s;
}

.motion_item_02{
  transition-delay:.2s;
}

.motion_item_03{
  transition-delay:.35s;
}

.motion_item_04{
  transition-delay:.5s;
}

/* 공용 빈 상태 */
.common_empty{
  padding:80px 20px;
  border:1px solid #e5e7eb;
  border-radius:28px;
  text-align:center;
  box-sizing:border-box;
}

.common_empty_text{
  margin:0;
  font-size:16px;
  font-weight:500;
  line-height:1.7;
  color:#6b7280;
  word-break:keep-all;
}

/* 공용 영역 여백 */
.section_space_lg{
  padding:140px 0;
}

.section_space_md{
  padding:110px 0;
}

.section_space_sm{
  padding:80px 0;
}

/* tablet */
@media screen and (max-width: 1199px){
  .section_inner{
    padding:0 56px;
  }

  .section_head{
    margin-bottom:30px;
  }

  .section_eyebrow{
    font-size:14px;
  }

  .section_title{
    font-size:44px;
  }

  .section_desc{
    max-width:100%;
    font-size:17px;
    line-height:1.8;
  }

  .common_btn{
    min-width:180px;
    height:52px;
    font-size:14px;
  }

  .common_chip{
    height:34px;
    padding:0 12px;
    font-size:13px;
  }

  .common_card{
    border-radius:24px;
  }

  .common_empty{
    padding:72px 20px;
    border-radius:24px;
  }

  .common_empty_text{
    font-size:15px;
  }

  .section_space_lg{
    padding:110px 0;
  }

  .section_space_md{
    padding:96px 0;
  }

  .section_space_sm{
    padding:72px 0;
  }
}

/* mobile */
@media screen and (max-width: 767px){
  .section_inner{
    padding:0 22px;
  }

  .section_head{
    margin-bottom:24px;
  }

  .section_eyebrow{
    margin-bottom:14px;
    font-size:12px;
    letter-spacing:.18em;
  }

  .section_title{
    font-size:30px;
    line-height:1.4;
  }

  .section_desc{
    margin-top:18px;
    font-size:15px;
    line-height:1.75;
  }

  .common_btn{
    width:100%;
    min-width:100%;
    height:50px;
    padding:0 18px;
    font-size:14px;
  }

  .common_chip{
    height:32px;
    padding:0 11px;
    font-size:12px;
  }

  .common_card{
    border-radius:20px;
  }

  .common_empty{
    padding:64px 16px;
    border-radius:20px;
  }

  .common_empty_text{
    font-size:15px;
  }

  .motion_item{
    transform:translateY(28px);
  }

  .section_space_lg{
    padding:80px 0;
  }

  .section_space_md{
    padding:72px 0;
  }

  .section_space_sm{
    padding:64px 0;
  }
}