/* =========================================================
   Color System (Global Tokens)
   ========================================================= */
:root {
  /* 블랙 계열 */
  --bh-black: #121212;
  --bh-black-1st: #6b7280;
  --bh-black-2nd: #909090;

  /* 기타 */
  --bh-primary: #14a077;
  --bh-secondary: #6c757d;
  --bh-success: #198754;
  --bh-info: #0dcaf0;
  --bh-warning: #f59e0b;
  --bh-danger: #dc3545;
  --bh-light: #f0f0f0;
  --bh-lightgray: #e0e0e0;
  --bh-midgray: #d0d0d0;
  --bh-gray: #b0b0b0;
  --bh-darkgray: #a0a0a0;
  --bh-dark: #121212;
  --bh-white: #ffffff;

  /* 브레드크럼 · 연한 회색 톤 */
  --bh-breadcrumb-soft-1: #fafafa;
  --bh-breadcrumb-soft-2: #f3f3f3;
  --bh-breadcrumb-soft-3: #ececec;
  --bh-breadcrumb-soft-4: #f7f7f7;

  /* 진행율 · 위저드 강조 배경 */
  --bh-primary-soft: #e8f7f1;
  --bh-danger-soft: color-mix(in srgb, var(--bh-danger) 12%, white);
  --bh-warning-soft: color-mix(in srgb, var(--bh-warning) 15%, white);
  --bh-primary-muted: color-mix(in srgb, var(--bh-primary) 10%, white);
}

/* =========================================================
   Global: 가로 스크롤·스와이프 여백 노출 방지
   ========================================================= */
html {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
  width: 100%;
  touch-action: pan-y pinch-zoom;
}

.boxed,
.menu-mobile-popup {
  overflow-x: clip;
  max-width: 100%;
}

.mypage-menu,
.resume-wizard-step-nav,
.cs-table-drag-scroll {
  touch-action: pan-x pan-y;
}

/* 전역 컬러 유틸리티 (필요 시 어디서든 사용) */
.text-bh-base { color: var(--bh-black) !important; }
.text-bh-1st { color: var(--bh-black-1st) !important; }
.text-bh-2nd { color: var(--bh-black-2nd) !important; }
.text-bh-primary { color: var(--bh-primary) !important; }
.text-bh-secondary { color: var(--bh-secondary) !important; }
.text-bh-success { color: var(--bh-success) !important; }
.text-bh-info { color: var(--bh-info) !important; }
.text-bh-warning { color: var(--bh-warning) !important; }
.text-bh-danger { color: var(--bh-danger) !important; }
.text-bh-light { color: var(--bh-light) !important; }
.text-bh-dark { color: var(--bh-dark) !important; }

.bg-bh-base { background-color: var(--bh-black) !important; }
.bg-bh-1st { background-color: var(--bh-black-1st) !important; }
.bg-bh-2nd { background-color: var(--bh-black-2nd) !important; }
.bg-bh-primary { background-color: var(--bh-primary) !important; }
.bg-bh-secondary { background-color: var(--bh-secondary) !important; }
.bg-bh-success { background-color: var(--bh-success) !important; }
.bg-bh-info { background-color: var(--bh-info) !important; }
.bg-bh-warning { background-color: var(--bh-warning) !important; }
.bg-bh-danger { background-color: var(--bh-danger) !important; }
.bg-bh-light { background-color: var(--bh-light) !important; }
.bg-bh-dark { background-color: var(--bh-dark) !important; }

.border-bh-base { border-color: var(--bh-black) !important; }
.border-bh-1st { border-color: var(--bh-black-1st) !important; }
.border-bh-2nd { border-color: var(--bh-black-2nd) !important; }
.border-bh-primary { border-color: var(--bh-primary) !important; }
.border-bh-secondary { border-color: var(--bh-secondary) !important; }
.border-bh-success { border-color: var(--bh-success) !important; }
.border-bh-info { border-color: var(--bh-info) !important; }
.border-bh-warning { border-color: var(--bh-warning) !important; }
.border-bh-danger { border-color: var(--bh-danger) !important; }
.border-bh-light { border-color: var(--bh-light) !important; }
.border-bh-dark { border-color: var(--bh-dark) !important; }

/* --------- */
/* 공통 Start*/

html,
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
}
.only-pc {
  display: block;
}

.only-mb {
  display: none;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }

  .only-mb {
    display: block;
  }
}

input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin-top: 0;
  vertical-align: middle;
}

.form-check-input[type='checkbox'] {
  margin-top: 0 !important;
  vertical-align: middle;
}

.form-check-label {
  margin-bottom: 0;
}

input::placeholder {
  color: var(--bh-black-2nd) !important;
}

input {
  color: var(--bh-black) !important;
}

/* 레이아웃 */
.container-sm {
  max-width: 1000px;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--bh-black);
}

.page-title-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--bh-black-1st);
}

.content-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bh-black);
}

/* 체크박스 */
.checkbox-group {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  min-height: 50px;
  flex-wrap: wrap;
}

.checkbox-item {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
}

.checkbox-item input[type='checkbox'] {
  width: 20px;
  height: 20px;
}

.checkbox-item label {
  font-size: 1.2em;
  margin-left: 5px;
}

@media (min-width: 769px) {
  .checkbox-item {
    width: auto;
  }
}

.sound_only {
  display: none;
}

/* 모바일 메뉴 */

.dgf-nav-mobile {
  position: fixed;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 1000;
}

.dgf-nav-icon {
  width: 30px;
  height: 3px;
  background-color: var(--bh-dark);
  display: block;
  margin: 5px 0;
}

.dgf-menu-mobile-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateX(-100%);
  transition: transform 0s ease;
  z-index: 99999;
}

.dgf-menu-mobile-popup.active {
  transform: translateX(0);
}

.dgf-widget-filter {
  background-color: var(--bh-white);
  width: 250px;
  height: 100%;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.dgf-mobile-nav {
  flex-grow: 1;
  overflow-y: auto;
  margin-top: 5px;
}

.dgf-widget-filter__footer {
  border-top: 1px solid var(--bh-light);
  display: flex;
}

.dgf-widget-filter__footer a {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: var(--bh-dark);
  text-decoration: none;
  font-weight: 600;
  border-right: 1px solid var(--bh-light);
}

.dgf-widget-filter__footer a:last-child {
  border-right: none;
}

.dgf-menu-mobile-popup.active .dgf-widget-filter {
  transform: translateX(0);
}

.dgf-mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dgf-mobile-nav li {
  padding: 15px;
  border-bottom: 1px solid var(--bh-light);
}

.dgf-mobile-nav a {
  text-decoration: none;
  color: var(--bh-dark);
}

/* 모바일 메뉴 서브메뉴 토글 */
.dgf-mobile-nav .dgf-submenu,
.dgf-mobile-nav .dgf-nav-submenu {
  display: none;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.dgf-mobile-nav li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 1단계 서브메뉴 */
.dgf-mobile-nav .dgf-submenu li {
  padding: 0;
  border-bottom: 1px solid var(--bh-light);
  margin-top: 2px;
}

.dgf-mobile-nav .dgf-submenu li > a {
  padding: 10px;
  font-size: 14px;
}

/* 2단계 서브메뉴 */
.dgf-mobile-nav .dgf-nav-submenu li {
  padding: 0;
  border-bottom: 1px solid var(--bh-light);
}

.dgf-mobile-nav .dgf-nav-submenu li a {
  padding: 8px 15px 8px 15px;
  font-size: 13px;
}

.dgf-mobile-nav .dgf-submenu li:last-child,
.dgf-mobile-nav .dgf-nav-submenu li:last-child {
  border-bottom: none;
}

.dgf-mobile-nav li.active > a {
  color: var(--bh-primary);
  font-weight: bold;
}

.dgf-mobile-nav li.active > a .icon-keyboard_arrow_right {
  transform: rotate(90deg);
}

.dgf-mobile-nav li.active > .dgf-submenu,
.dgf-mobile-nav li.active > .dgf-nav-submenu {
  display: block;
}

.dgf-modal-menu__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.dgf-close-button {
  position: absolute;
  top: 0;
  right: -35px;
  background: var(--bh-white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px 10px !important;
  /* 메뉴보다 위에 표시되도록 */
}

.dgf-close-button:focus {
  outline: none;
}

/* 태그 관련 */
.tag-default {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--bh-white);
  padding: 3px 6px;
  background: var(--bh-primary);
  border-radius: 4px;
  height: 21px;
  line-height: 21px;
}

/* 공통 End*/
/* ------ */

/* 정보형 UI */

.list-infomation {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 10px;
  list-style: none;
  padding: 0;
}

.list-infomation li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 calc(33.33% - 20px);
  border-bottom: 1px solid var(--bh-black-2nd);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list-infomation .title {
  color: var(--bh-secondary);
  margin-right: 10px;
}

.list-infomation .detail {
  color: var(--bh-black);
  font-weight: bold;
}

/* 모바일 메인 */

/* 기본 스타일 숨기기 */

.mobile-main-menu {
  display: none;
  margin: 0 15px;
  border: 1px solid var(--bh-light);
}

@media (max-width: 991px) {
  .mobile-main-menu {
    margin-top: 50px;
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-main-menu {
    margin-top: 100px;
    display: block;
  }
}

@media (max-width: 551px) {
  .mobile-main-menu {
    margin-top: 20px;
    display: block;
  }
}

.mobile-main-menu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-main-menu li {
  width: 33.33%;
  /* 가로 3줄 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bh-light);
  box-sizing: border-box;
  padding: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.mobile-main-menu li:hover {
  background-color: var(--bh-primary);
  color: var(--bh-white);
  border-color: var(--bh-primary);
}

.mobile-main-menu img {
  margin-bottom: 5px;
  /* 이미지와 텍스트 사이 간격 */
  max-width: 70px;
}

/* 아이콘 */

.icon-custom-print {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M128 0C92.7 0 64 28.7 64 64l0 96 64 0 0-96 226.7 0L384 93.3l0 66.7 64 0 0-66.7c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0L128 0zM384 352l0 32 0 64-256 0 0-64 0-16 0-16 256 0zm64 32l32 0c17.7 0 32-14.3 32-32l0-96c0-35.3-28.7-64-64-64L64 192c-35.3 0-64 28.7-64 64l0 96c0 17.7 14.3 32 32 32l32 0 0 64c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-64zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>')
    no-repeat center center;
  background-size: contain;
}

.icon-custom-info {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>')
    no-repeat center center;
  background-size: contain;
}

/* 폰트 */

.font-color-point {
  color: var(--bh-primary) !important;
}

.font-color-warning {
  color: orange !important;
}

.font-color-gray {
  color: gray !important;
}

.font-color-midgray {
  color: var(--bh-black-2nd) !important;
}

.font-color-lightgray {
  color: lightgray !important;
}

.font-color-white {
  color: white !important;
}

.font-size-mini {
  font-size: 11px !important;
}

.font-size-sm {
  font-size: 12px !important;
}

.font-size-md {
  font-size: 16px !important;
}

.font-size-lg {
  font-size: 20px !important;
}

.font-size-xlg {
  font-size: 30px !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: 900 !important;
}

/* 탭메뉴 모바일 가로스크롤 */

@media (max-width: 768px) {
  .tf-container {
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
  }

  .job-article.single-job .menu-tab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .job-article.single-job .menu-tab::-webkit-scrollbar {
    display: none;
  }

  .job-article.single-job .menu-tab li {
    flex-shrink: 0;
  }
}

/* 버튼 */

.btn-mini {
  padding: 3px 8px;
  background: var(--bh-light);
  border-radius: 4px;
  font-size: 12px;
  line-height: 16px;
  color: var(--bh-black);
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  padding: 5px 7px;
  background: var(--bh-white);
  border: 1px solid var(--bh-primary);
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: var(--bh-primary);
  box-sizing: border-box;
}

.btn-sm:hover {
  background: var(--bh-primary);
  color: var(--bh-white) !important;
}

.btn-sm-p {
  padding: 2px 7px;
  background: var(--bh-primary);
  border: 1px solid var(--bh-primary);
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: var(--bh-white);
  display: inline-block;
  box-sizing: border-box;
}

.btn-sm-p:hover {
  background: var(--bh-white);
  color: var(--bh-primary);
}

.btn-yn-y {
  padding: 2px 7px;
  background: var(--bh-black-1st);
  border: 1px solid var(--bh-black-1st);
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: var(--bh-white);
  display: inline-block;
  box-sizing: border-box;
}

.btn-yn-y:hover {
  background: var(--bh-white);
  color: var(--bh-black-1st);
}

.btn-yn-n {
  padding: 2px 7px;
  background: var(--bh-white);
  border: 1px solid var(--bh-black-2nd);
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: var(--bh-black-2nd);
  display: inline-block;
  box-sizing: border-box;
}

.job-button button {
  margin-bottom: 5px;
}

.btn-md-border {
  padding: 5px 10px;
  width: auto;
  background: transparent;
  border: 1px solid var(--bh-primary);
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: var(--bh-primary);
  line-height: 26px;
}

.btn-md-border:hover {
  background: var(--bh-primary) !important;
  color: var(--bh-white) !important;
}

/* 기본 테이블 */
.table-default {
  border-top: 1px var(--bh-light) solid;
  border-left: 1px var(--bh-light) solid;
  border-bottom: 1px var(--bh-light) solid;
  width: 100%;
  white-space: nowrap;
}

.table-default th {
  padding: 10px 20px;
  background-color: var(--bh-light);
  border-bottom: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}

.table-default td {
  padding: 10px 20px;
  border-bottom: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .table-default {
    display: block;
    overflow-x: auto;
  }

  .table-default::after {
    content: '우측으로 스크롤 하세요';
    display: block;
    text-align: center;
    padding: 3px 5px;
    color: gray;
    font-size: 12px;
  }
}

.table-small {
  border-top: 1px var(--bh-light) solid;
  border-left: 1px var(--bh-light) solid;
  width: 100%;
}

.table-small th {
  padding: 10px 20px;
  background-color: var(--bh-light);
  border-bottom: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  width: 150px;
  text-align: center;
  vertical-align: middle;
}

.table-small td {
  padding: 10px 20px;
  border-bottom: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  vertical-align: middle;
  text-align: center;
}

/* company-service: table drag scroll */
.cs-table-drag-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x pan-y;
}

.cs-table-drag-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.cs-table-drag-scroll .table-default {
  min-width: 760px;
  margin-bottom: 0;
}

.cs-table-drag-scroll .table-default::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 768px) {
  .cs-table-drag-scroll .table-default {
    display: table !important;
    overflow: visible !important;
  }
}

/* job 테이블 */
.job-table {
  border-top: 1px var(--bh-light) solid;
  border-left: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  width: 100%;
}

.job-table th {
  padding: 10px 20px;
  background-color: var(--bh-light);
  border-bottom: 1px var(--bh-light) solid;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}

.job-table td {
  padding: 10px 20px;
  border-bottom: 1px var(--bh-light) solid;
  vertical-align: middle;
}

.job-table2 {
  border-top: 1px var(--bh-light) solid;
  border-left: 1px var(--bh-light) solid;
  width: 100%;
}

.job-table2 th {
  padding: 10px 20px;
  border-bottom: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  width: 150px;
  text-align: center;
  vertical-align: middle;
}

.job-table2 td {
  padding: 10px 20px;
  border-bottom: 1px var(--bh-light) solid;
  border-right: 1px var(--bh-light) solid;
  vertical-align: middle;
}

.job-table2 .group-input {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* 메인 */

.dgf-menu-bar {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.main-contents-A {
  margin-top: 70px;
  width: 1434px;
  min-width: 1434px;
  margin: 70px auto 0 auto;
}

.main-contents-A p {
  font-size: 13px;
}

@media (max-width: 991px) {
  .main-contents-A {
    margin-top: 20px;
    width: 100%;
    min-width: 100%;
  }
}

.main-contents-A .jobA-wrap {
  border: 1px solid var(--bh-light);
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 4px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
  background-image: url('../img/main/job-area-bg.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.main-contents-A .jobA-wrap .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 17px;
}

.main-contents-A .jobA-wrap .job-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
}

.main-contents-A .jobA-wrap .job-area a {
  width: calc(25% - 8px);
  text-align: center;
  padding: 0 5px;
}

@media (max-width: 991px) {
  .main-contents-A .jobA-wrap {
    border: 1px solid var(--bh-light);
    box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
    border-radius: 4px;
    padding: 24px 24px 24px 24px;
    text-align: left;
    height: auto;
    background-image: url('../img/main/job-area-bg.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
  }

  .main-contents-A .jobA-wrap .job-area a {
    width: calc(20% - 8px);
  }

  .main-contents-A .jobA-wrap .job-area {
    word-spacing: 20px;
    line-height: 30px;
    font-size: 18px;
  }
}

.main-contents-A .jobB-wrap {
  border: 1px solid var(--bh-light);
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 4px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
}

.main-contents-A .jobB-wrap .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-contents-A .jobB-wrap .caddy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.main-contents-A .jobB-wrap .caddy-item {
  width: 33%;
}

.main-contents-A .jobB-wrap .caddy-item img {
  display: block;
  margin: 5px auto;
  height: 50px;
}

.main-contents-A .jobC-wrap {
  border: 1px solid var(--bh-light);
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 4px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
}

.main-contents-A .jobC-wrap .title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-contents-A .jobC-wrap .caddy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.main-contents-A .jobC-wrap .caddy-item {
  width: 50%;
  display: flex;
  align-items: center;
  margin: 10px 0 15px 0;
}

.main-contents-A .jobC-wrap .caddy-item img {
  display: inline-block;
  margin-right: 5px;
}

.main-contents-A .jobC-wrap .caddy-item a {
  display: flex;
  align-items: center;
}

.main-contents-A .jobC-wrap .caddy-item p {
  padding-left: 3px;
}

.main-contents-A .jobD-wrap {
  border: 1px solid var(--bh-light);
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  border-radius: 4px;
  padding: 24px 24px 24px 24px;
  text-align: left;
  height: 250px;
}

.main-contents-A .jobD-wrap .title {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-contents-A .jobD-wrap .contents-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-contents-A .jobD-wrap .contents-item {
  width: 33%;
}

.main-contents-A .jobD-wrap .contents-inner {
  justify-content: left;
  cursor: pointer;
}

.main-contents-A .jobD-wrap .contents-inner strong {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.main-contents-A .jobD-wrap .contents-inner ul {
  list-style: none;
  padding: 0 0 5px 0;
  display: flex;
  flex-wrap: wrap;
}

.main-contents-A .jobD-wrap .contents-inner ul li {
  margin-right: 5px;
  color: gray;
  font-size: 14px;
  line-height: 22px;
}

.main-contents-A .jobD-wrap .contents-inner ul li a {
  color: gray;
}

.main-contents-A .jobD-wrap .contents-inner ul li::after {
  content: '|';
  color: var(--bh-light);
  margin-left: 5px;
}

.main-contents-A .jobD-wrap .contents-inner ul li:last-child::after {
  content: '';
}

@media (max-width: 768px) {
  .main-contents-A .jobD-wrap {
    height: auto;
  }
}

.main-contents-A .job-wrap .title {
  background-color: var(--bh-black-2nd);
  color: var(--bh-white);
  font-weight: bold;
  padding: 5px 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.main-contents-A .login-wrap {
  padding: 24px;
  background: var(--bh-light);
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  height: 250px;
}

.main-contents-A .login-wrap table {
  width: 100%;
}

.main-contents-A .login-wrap table td {
  background-color: var(--bh-white);
  padding: 10px 10px 5px 10px;
  line-height: 20px;
}

.main-cc-rank {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 1rem 0 1rem 1rem;
  height: 602px;
  overflow: hidden;
}

.main-cc-rank ul {
  width: 100%;
  height: 600px;
  overflow: auto;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-arrow-color: transparent;
  scrollbar-color: var(--bh-light) var(--bh-white);
}

.main-cc-rank strong {
  font-size: 20px;
}

.main-cc-rank ul {
  margin-top: 15px;
}

.main-cc-rank ul li {
  margin-bottom: 10px;
}

.main-cc-rank ul li:nth-child(-n + 5) .cc-rank {
  background-color: orange;
}

.main-cc-rank ul li:nth-child(n + 6):nth-child(-n + 10) .cc-rank {
  background-color: black;
}

.main-cc-rank ul li:nth-child(n + 11) .cc-rank {
  background-color: gray;
}

.main-cc-rank .cc-rank {
  display: inline-block;
  width: 40px;
  padding: 0 10px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-right: 10px;
}

.main-keyvisual-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 40px;
  color: var(--bh-white);
  margin-bottom: 10px;
}

.main-keyvisual-subtitle {
  font-size: 17px;
  font-weight: 200;
  line-height: 25px;
  color: var(--bh-white);
  display: block;
}

@media (max-width: 768px) {
  .main-keyvisual-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    color: var(--bh-white);
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .main-keyvisual-subtitle {
    display: none;
  }
}

/* Swiper */

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* 잡 리스트 목록형 */

.list-job:hover {
  border: 1px solid var(--bh-primary);
  transition: all 0.3s ease-in-out;
}

.list-job {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.list-job .inner-box {
  display: grid;
  grid-template-columns: 250px 1fr 250px 100px;
  align-items: center;
  column-gap: 20px;
  row-gap: 5px;
}

@media (max-width: 900px) {
  .list-job .inner-box {
    display: grid;
    grid-template-columns: auto;
    flex-direction: row;
  }
}

.list-job .inner-box h2 {
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
}

.list-job .inner-box h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  word-break: break-word;
}

/* 잡 리스트 공통 */

.ad-info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.ad-info-box .ad-info-addr {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  /* 범위 제한을 위한 예시 값, 필요에 따라 조정 */
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}

.ad-info-box .ad-info-addr::after {
  content: '…';
  display: inline-block;
  width: 0;
  height: 0;
  overflow: visible;
  vertical-align: middle;
  visibility: hidden;
}

.ad-info-box .ad-info-addr[title]:hover::after {
  visibility: visible;
}

.ad-info-box .ad-iofo-date {
  font-size: 13px;
}

/* 잡 리스트 광고형 - a */

.joblist-a {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  background-size: 100% auto;
  background-position: center center;
}

.joblist-a:hover {
  border: 1px solid var(--bh-primary);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 4px rgba(28, 36, 51, 0.2);
}

.joblist-a .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.joblist-a .inner-box .box-content {
  width: 100%;
}

.joblist-a .inner-box h2 {
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
}

.joblist-a .inner-box h3 {
  font-size: 16px;
  font-weight: 900;
  word-break: break-word;
  margin-top: 5px;
}

.joblist-a .inner-box .logo-img {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  height: 60px;
}

.joblist-a .inner-box img {
  max-width: 130px;
  max-height: 50px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.joblist-a .inner-box .logo-img h4 {
  margin-bottom: 10px;
}

.joblist-a .inner-box .logo-img .logo-img-inner {
  display: flex;
  border-radius: 4px;
  margin-bottom: 15px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.joblist-a ul {
  margin-top: 4px;
}

.joblist-a ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.joblist-a ul li:first-child {
  margin-right: 16px;
}

.joblist-a h4 {
  line-height: 24px;
  font-size: 14px;
  word-break: break-word;
}

.joblist-a h4 a {
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  color: var(--bh-primary);
}

.joblist-a h3 {
  line-height: 20px;
  font-size: 16px;
  word-break: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.joblist-a h3 a {
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  color: var(--bh-black);
  text-transform: capitalize;
}

/* 잡 리스트 광고형 - b */

.joblist-b {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  background-image: url('/img/joblist/background-A1.jpg');
}

.joblist-b:hover {
  border: 1px solid var(--bh-primary);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 5px rgba(28, 36, 51, 0.3);
}

.joblist-b .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.joblist-b .inner-box .box-content {
  width: 100%;
}

.joblist-b .inner-box h2 {
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
  color: var(--bh-white);
}

.joblist-b .inner-box h3 {
  font-size: 16px;
  font-weight: 900;
  word-break: break-word;
}

.joblist-b .inner-box h3 a {
  color: var(--bh-white);
}

.joblist-b .inner-box .logo-img {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.joblist-b .inner-box .logo-img img {
  max-width: 130px;
  max-height: 50px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.joblist-b .inner-box .logo-img h4 {
  margin-bottom: 10px;
  color: var(--bh-white);
}

.joblist-b .inner-box .logo-img .logo-img-inner {
  display: flex;
  background-color: var(--bh-white);
  padding: 0px;
  border-radius: 4px;
  margin-bottom: 15px;
  height: auto;
  align-items: center;
  justify-content: center;
}

.joblist-b ul {
  margin-top: 4px;
}

.joblist-b ul li {
  color: var(--bh-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.joblist-b ul li:first-child {
  margin-right: 16px;
}

.joblist-b h4 {
  line-height: 24px;
  font-size: 14px;
  word-break: break-word;
}

.joblist-b h4 a {
  transition: all 0.3s ease-in-out;
  color: var(--bh-white);
  font-weight: 600;
}

.joblist-b h3 {
  line-height: 20px;
  font-size: 16px;
  word-break: break-word;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bh-white);
}

.joblist-b h3 a {
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  color: var(--bh-white);
  text-transform: capitalize;
}

/* 잡 리스트 로고형 */

.biglogo-job {
  margin-bottom: 20px;
  gap: 0;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  padding: 24px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
  flex: 1;
}

.biglogo-job:hover {
  border: 1px solid var(--bh-primary);
  transition: all 0.3s ease-in-out;
}

.biglogo-job .inner-box {
  position: relative;
  display: flex;
  align-items: center;
}

.biglogo-job .inner-box .logo-img {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.biglogo-job .inner-box .logo-img img {
  max-width: 160px;
  max-height: 50px;
}

.biglogo-job .inner-box .logo-img h4 {
  margin-bottom: 10px;
}

.biglogo-job .inner-box .logo-img .logo-img-inner {
  display: flex;
  background-color: var(--bh-white);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.biglogo-job .inner-box .logo-company {
  margin: 9px 16px 9px 0px;
}

.biglogo-job .inner-box .box-content {
  width: 100%;
}

.biglogo-job.style-2.stc-apply .inner-box .box-content {
  width: 50%;
}

.biglogo-job .inner-box .logo-company > img {
  max-width: 70px;
}

.biglogo-job .job-archive-header span.icon-heart {
  right: 0;
  top: 0;
  position: absolute;
  border-radius: 4px;
  padding: 12px;
  color: var(--bh-light);
  font-size: 17.42px;
  border: 1px solid var(--bh-light);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.biglogo-job .job-archive-header span.icon-heart:active,
.biglogo-job .job-archive-header span.icon-heart:hover {
  color: var(--bh-danger);
}

.biglogo-job .job-archive-header h4 {
  line-height: 24px;
  font-size: 14px;
  word-break: break-word;
}

.biglogo-job .job-archive-header h4 a {
  transition: all 0.3s ease-in-out;
  color: var(--bh-primary);
  font-weight: 600;
}

.biglogo-job .job-archive-header h3 {
  line-height: 20px;
  font-size: 16px;
  word-break: break-word;
  white-space: nowrap;
  /* 한 줄로 표시 */
  overflow: hidden;
  /* 넘치는 텍스트 숨기기 */
  text-overflow: ellipsis;
  /* 말줄임표 추가 */
}

.biglogo-job .job-archive-header h3 a {
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  color: var(--bh-black);
  text-transform: capitalize;
}

.home-box-item h2 a:not(.jobtex-link-item),
.biglogo-job .job-archive-header h3 a:not(.jobtex-link-item),
.biglogo-job.style-3 .box-content h3 a:not(.jobtex-link-item),
.biglogo-job .job-archive-footer .job-tag li a:not(.jobtex-link-item),
.biglogo-job.style-3 .category .job-tag li a:not(.jobtex-link-item),
.employer-block .box-content h3 a:not(.jobtex-link-item) {
  position: relative;
  z-index: 2;
}

.biglogo-job .job-archive-header span.icon-heart:not(.jobtex-link-item),
.biglogo-job.style-3 .group-btn span.icon-heart:not(.jobtex-link-item) {
  z-index: 2;
}

.biglogo-job .job-archive-header h3 a:hover,
.biglogo-job.style-3 .box-content h3 a:hover {
  color: var(--bh-primary);
}

h3 span.icon-bolt {
  font-size: 14px;
  background-color: var(--bh-black-1st);
  border-radius: 4px;
  padding: 3px;
  color: var(--bh-white);
}

.biglogo-job .job-archive-header ul {
  margin-top: 4px;
}

.biglogo-job .job-archive-header ul li {
  color: var(--bh-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  display: inline-block;
}

.biglogo-job .job-archive-header ul li:first-child {
  margin-right: 16px;
}

.biglogo-job .job-footer-left {
  border-bottom: 1px solid var(--bh-light);
  display: flex;
  justify-content: space-between;
  justify-content: space-between;
  padding: 16px 0px;
}

.biglogo-job .job-footer-right {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.biglogo-job .job-archive-footer .job-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.biglogo-job .job-archive-footer .job-tag li a {
  background-color: var(--bh-light);
  color: var(--bh-black);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
}

.biglogo-job .job-archive-footer .job-tag li a:hover {
  background: var(--bh-success);
  color: var(--bh-white);
}

.biglogo-job .star span,
.employer-block .star span {
  font-size: 12.8px;
  color: var(--bh-warning);
  cursor: pointer;
}

.biglogo-job .star span:last-child,
.employer-block .star span:last-child {
  color: var(--bh-light);
}

.biglogo-job .job-footer-right .price {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--bh-black);
}

.biglogo-job span.icon-dolar1 {
  font-size: 20px;
  color: var(--bh-black);
  margin-right: 8px;
}

.biglogo-job span.year {
  font-weight: 400;
  color: var(--bh-secondary);
}

.biglogo-job .job-footer-right .days {
  color: var(--bh-secondary);
  font-size: 14px;
  line-height: 22px;
}

/* =========================================================
   Page: 인재정보 목록
   ========================================================= */

@media (max-width: 768px) {
  .wd-meta-select-job {
    text-align: center;
  }
}

.person-box {
  padding: 7px 12px;
  background: rgba(20, 129, 96, 0.1);
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--bh-primary);
  margin-right: 12px;
}

.person-list {
  border: solid 1px var(--bh-light);
  padding: 15px;
  margin: 0 0 20px 0;
}

.person-list .person-list-header {
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--bh-light);
  padding: 10px;
}

.person-list .person-list-header h3 {
  color: var(--bh-dark);
  font-size: 18px;
}

.person-list .person-list-header h4 {
  color: var(--bh-primary);
  font-size: 15px;
}

.person-list .person-list-header img {
  width: auto;
  height: 100px;
  margin-right: 15px;
}

.person-list .person-list-footer {
  display: flex;
  padding: 10px 0 0 10px;
}

.person-list .person-list-footer .person-box {
  padding: 5px 7px;
  background: rgba(20, 129, 96, 0.1);
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--bh-primary);
  margin-right: 2px;
  width: auto;
}

/* =========================================================
   Page: 기업 채용공고(상세/메타)
   ========================================================= */

.job-info p {
  color: gray;
  margin: 0;
}

.job-info span {
  font-weight: 600;
  color: black;
}

.job-info .col-12 {
  border-bottom: solid 1px var(--bh-light);
  display: flex;
  padding: 15px 20px;
  flex-direction: row;
  /* 기본적으로 가로 정렬 */
}

.job-info .col-12 > p:first-child {
  width: 120px;
  /* 첫 번째 <div>의 너비를 100px로 고정 */
}

.job-info .col-12 > span:last-child {
  flex: 1;
  /* 두 번째 <div>가 남은 공간을 차지하도록 설정 */
}

.job-info2 .row {
  border-bottom: solid 1px var(--bh-light);
  padding: 15px 20px;
}

.job-info2 p {
  font-size: 14px;
  color: gray;
  margin: 0;
}

.job-info2 span {
  font-size: 16px;
  font-weight: 700;
  color: black;
}

@media (max-width: 768px) {
  .job-info .col-12 {
    flex-direction: column;
    /* 모바일에서는 세로 정렬 */
  }

  .job-info .col-12 > p:first-child {
    width: 100%;
    /* 모바일에서는 너비를 100%로 설정 */
  }

  .job-info .col-12 > span {
    text-align: left;
    /* 모바일에서는 왼쪽 정렬 */
  }
}

.job-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  /* 세로 중앙정렬 */
  margin-bottom: 20px;
  /* 하단 마진 20px */
}

@media (max-width: 768px) {
  .job-title {
    display: block;
    margin-bottom: 20px;
    /* 하단 마진 20px */
  }
}

.job-title .title {
  width: auto;
  color: var(--bh-black);
  font-size: 16px;
  font-weight: 900;
  margin-right: 5px;
}

.job-title .filter {
  width: 100px;
  margin-right: 5px;
}

.job-title p {
  font-size: 13px;
}

/* =========================================================
   Component: 사이드바 공통
   ========================================================= */

.categories {
  width: 100%;
}

.categories-wrap i {
  color: lightgray;
  margin-right: 10px;
}

.categories-wrap .categories-item:first-child {
  border-top: var(--bh-light) solid 1px;
}

.categories-wrap .categories-item {
  border-bottom: var(--bh-light) solid 1px;
  padding: 6px 0;
}

/* =========================================================
   Page: 로그인 / 회원가입
   ========================================================= */

.snslogo {
  width: 40px;
}

.join-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.join-form {
  max-width: 760px;
  margin: 0 auto;
}

.join-form-section {
  border: 1px solid var(--bh-light);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 20px 8px;
  background-color: #fff;
}

.join-form-section > .join-form-fields + .join-form-fields {
  margin-top: 0;
}

.join-form-section-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-dark);
}

.join-form-section-title .join-form-required {
  font-size: 14px;
  font-weight: 400;
  color: var(--bh-danger);
  margin-left: 5px;
}

.join-form-field label {
  display: block;
  font-size: 14px;
  color: var(--bh-dark);
}

.join-form-field .input-form,
.join-form-field .inputs-group {
  width: 100%;
  background-color: #f0f0f0;
}

.join-form-cert,
.join-form-cert-done {
  font-size: 14px;
}

.join-form > .row {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  margin: 25px 0;
  padding: 15px 10px;
  transition: box-shadow 0.3s ease;
  background-color: var(--bh-light);
}

.join-form > .row:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: var(--bh-light);
}

.join-form .ip {
  padding: 5px 0;
}
.join-form .ip > h6 {
  margin-top: 15px;
}

.join-form .ip > h6 .join-form-required {
  font-size: 14px;
  font-weight: 400;
  color: var(--bh-danger);
  margin-left: 5px;
}

.join-form-field-msg {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.join-form-field-msg.is-checking {
  color: var(--bh-black-2nd, #6c757d);
}

.join-form-field-msg.is-ok {
  color: #198754;
}

.join-form-field-msg.is-error {
  color: #dc3545;
}

.join-form .w-130 {
  width: 100%;
}

@media (min-width: 991px) {
  .join-form .w-130 {
    width: 130px;
  }
}

.join-form .w-300 {
  width: 100%;
}

@media (min-width: 991px) {
  .join-form .w-300 {
    width: 300px;
  }
}

.join-form input {
  padding: 10px;
}

.html-privacy {
  height: 300px;
  overflow-y: scroll;
}

.html-privacy h2 {
  font-size: 18px;
  margin: 10px 0;
}

.html-privacy h6 {
  font-size: 16px;
  margin: 0 0 5px 5px;
}

.html-privacy p,
.html-privacy li {
  font-size: 13px;
  margin: 0 0 0 10px;
}

.agree-wrap {
  display: flex;
  gap: 5px;
  justify-content: end;
  font-size: 16px;
  padding: 0 10px 10px 0;
}

.agree-wrap .agree-title {
  display: flex;
  gap: 5px;
  justify-content: end;
  align-items: center;
}

.agree-btn-wrap {
  text-align: center;
}

.agree-btn-wrap .agree-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.agree-btn-wrap .agree-title input {
  width: 18px;
  height: 18px;
}

.input-disabled {
  border: 0 !important;
}

.join-form .grade-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
  border-top: 1px solid var(--bh-light);
  padding: 15px 0 10px 0;
}

.join-form .grade-wrap .grade-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.join-form .grade-border {
  border-top: 1px solid var(--bh-light);
  margin: 20px 0 0 0;
}

.join-form .grade-wrap span {
  font-size: 12px;
}

/* =========================================================
   Page: 마이페이지
   ========================================================= */

.my_topmenu {
  width: 100%;
}

.my_topmenu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 5px;
}

.my_topmenu li {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 콘텐츠 중앙 정렬 */
  justify-content: center;
  flex: 1 0 calc(20% - 5px);
  /* 간격을 고려한 너비 조정 */
  border: 1px solid var(--bh-light);
  background-color: var(--bh-light);
  box-sizing: border-box;
  text-align: center;
  padding: 15px 10px;
  /* 여백 추가 */
}

.my_topmenu p {
  font-size: 16px;
  /* 일반 텍스트 크기 */
}

.my_topmenu span {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  /* 여백 15px */
  border-radius: 4px;
  color: var(--bh-white);
  font-size: 20px;
  font-weight: bolder;
}

.my_topmenu li:nth-child(1) span {
  background-color: var(--bh-success);
  /* 첫 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(2) span {
  background-color: var(--bh-success);
  /* 두 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(3) span {
  background-color: var(--bh-success);
  /* 세 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(4) span {
  background-color: var(--bh-dark);
  /* 네 번째 숫자 배경색 */
}

.my_topmenu li:nth-child(5) span {
  background-color: var(--bh-dark);
  /* 다섯 번째 숫자 배경색 */
}

@media (max-width: 768px) {
  .my_topmenu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .my_topmenu li {
    flex: 0 0 50%;
    width: 50%;
  }
}

.join-juso input,
.join-juso a {
  margin-bottom: 5px;
}

/* =========================================================
   Page: 기업 채용공고 등록
   ========================================================= */

.inputs-check-area {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.inputs-check-area input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  margin-left: 15px;
  vertical-align: middle;
}

.inputs-text-area {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.inputs-text-area input[type='text'] {
  height: 35px !important;
  padding: 10px 10px !important;
  vertical-align: middle;
}

/* =========================================================
   Page: 약관
   ========================================================= */
.agreepage-wrap {
  height: 750px;
  font-size: 13px;
  line-height: 1.4rem;
  padding: 10px;
  border: 1px solid var(--bh-light);
  overflow-y: scroll;
  margin: 20px 0;
}

.agreepage-wrap .tit-type2 {
  font-size: 16px;
  font-weight: 600;
}

.agreepage-wrap h6 {
  font-size: 14px;
  margin-top: 15px;
}

footer .copyright {
  color: gray;
}

/* =========================================================
   Page: 지원자 관리
   ========================================================= */
.applicant-company {
  border-bottom: 1px solid var(--bh-light);
  padding: 10px 0;
}

/* =========================================================
   Page: 기업 채용공고 상세
   ========================================================= */
.detail-logo {
  display: inline-table;
  max-width: 200px;
  max-height: 100px;
  padding: 0 0 10px 0;
}

/* =========================================================
   Page: 기업 채용공고 목록 (모바일)
   ========================================================= */
.job-list-mb-search-wrap {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px 18px 24px;
  background-color: var(--bh-light);
  border-radius: 4px;
}

.job-list-mb-search-wrap .title {
  font-size: 16px;
  font-weight: 700;
}

#job-list-mb-search-panel {
  display: none;
}

/* 기존 채용광고 border 색상 */
.border-color-B0101,
.border-color-B0102,
.border-color-B0103,
.border-color-B0104,
.border-color-B0105 {
  border-color: var(--bh-black-1st);
  background: linear-gradient(to bottom, f7e8ff 5%, var(--bh-white) 0%);
}

.border-color-B0106,
.border-color-B0107,
.border-color-B0108,
.border-color-B0109,
.border-color-B0110 {
  border-color: navy;
  background: linear-gradient(to bottom, navy 5%, var(--bh-white) 0%);
}

/* =========================================================
   Component: 페이지네이션
   ========================================================= */
.pg-wrap .pg_page {
  margin: 0 30px;
}

/* =========================================================
   Component: 채용 카드
   ========================================================= */
.features-job .job-archive-header {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bh-lightgray);
}

.features-job--api .job-archive-header .box-content {
  min-width: 0;
  overflow: hidden;
}

.features-job--api .job-archive-header .box-content > ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  margin-right: 0;
}

.features-job--api .job-archive-header .box-content > ul li .icon-map-pin,
.features-job--api .job-archive-header .box-content > ul li > i {
  flex-shrink: 0;
}

.features-job.features-job--focus,
.features-job.features-job--top-company,
.candidates-section .features-job.features-job--focus,
.candidates-section .features-job.features-job--top-company {
  border: 1px solid var(--bh-dark);
}

.features-job.features-job--focus:hover,
.features-job.features-job--top-company:hover,
.candidates-section .features-job.features-job--focus:hover,
.candidates-section .features-job.features-job--top-company:hover {
  border: 1px solid var(--bh-primary);
  transition: all 0.3s ease-in-out;
}

.features-job:hover {
  border: 1px solid var(--bh-primary);
  transition: all 0.3s ease-in-out;
}

.features-job--focus .job-archive-header .box-content > p .badge {
  vertical-align: middle;
}

.top-company-job-list {
  padding: 0 16px 16px;
  border-top: 1px solid var(--bh-lightgray, #eee);
}

.top-company-job-list li a {
  color: var(--bh-black-1st);
  font-size: 14px;
}

.top-company-job-list li a:hover {
  color: var(--bh-info, #f5a623);
}

.features-job--api .job-archive-header .box-content > ul li .job-meta-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.features-job .job-archive-header .logo-company {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.features-job .job-archive-header .logo-company img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.features-job .job-archive-header .logo-company-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 22px;
  font-weight: 700;
  color: var(--bh-black-2nd);
  line-height: 1;
}

.employer-block .inner-box .logo-company-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 22px;
  font-weight: 700;
  color: var(--bh-black-2nd);
  line-height: 1;
}

.employer-block.style-3 .inner-box a.btn-employer {
  display: inline-block;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--bh-primary);
  border-radius: 4px;
  padding: 8px 20px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 700;
  box-sizing: border-box;
}

.employer-block.style-3 .inner-box a.btn-employer:hover {
  background-color: var(--bh-primary);
  border-color: var(--bh-white);
  color: var(--bh-white);
  transition: all 300ms ease;
}

/* 메인: 최신 취업 컬럼 카드 */
.home-main-column-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bh-white);
  border: 1px solid var(--bh-lightgray);
  height: auto;
  display: flex;
  flex-direction: column;
}

.home-column-wrap {
  margin-left: 0;
  width: 100%;
}

.home-column-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bh-dark);
  margin: 0 0 12px;
}

.home-column-list {
  row-gap: 16px;
}

.home-column-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 210px;
  overflow: hidden;
  background: var(--bh-light);
  border-bottom: 1px solid var(--bh-light);
}

.home-column-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.home-main-column-card:hover .home-column-thumb img {
  transform: scale(1.03);
}

.home-column-body {
  padding: 12px 14px;
}

.home-column-category {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--bh-primary);
  letter-spacing: 0.01em;
}

.home-column-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--bh-dark);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.home-column-title a {
  color: var(--bh-dark);
  text-decoration: none;
}

.home-column-title a:hover {
  color: var(--bh-success);
}

.home-column-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--bh-black-1st);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 채용 카드 하단 태그 (상시채용, 경력 등) */
.features-job .job-archive-footer .job-tag li,
.features-job.style-3 .category .job-tag li {
  display: inline-flex;
  align-items: center;
  background-color: var(--bh-lightgray);
  color: var(--bh-secondary);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: -0.02em;
  cursor: default;
}

.features-job .job-archive-footer .job-tag li::before,
.features-job.style-3 .category .job-tag li::before {
  content: '#';
  margin-right: 1px;
  color: var(--bh-black-2nd);
  font-weight: 600;
}

.features-job .job-archive-footer .job-tag li a,
.features-job.style-3 .category .job-tag li a {
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  padding: 0;
  border-radius: 4px;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

.features-job .job-archive-footer .job-tag li a:hover,
.features-job.style-3 .category .job-tag li a:hover {
  background: transparent;
  color: inherit;
}

/* =========================================================
   Component: 직종 태그
   ========================================================= */
.job-tag-wrap {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 991px) {
  .job-tag-wrap {
    justify-content: flex-start;
  }
}

/* =========================================================
   Component: 공통 버튼 (tf-button)
   ========================================================= */
.tf-button {
  padding: 0;
  border: none;
  display: inline-flex;
  align-items: center;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  cursor: pointer;
  text-decoration: none;
}

.tf-button i {
  margin-right: 4px;
}

.tf-button span {
  margin-left: 4px;
  transition: all 0.3s ease-in-out;
}

.tf-button.style-1 {
  border: 1px solid var(--bh-primary);
  padding: 11px 20px;
  border-radius: 4px;
  color: var(--bh-primary);
  background: transparent;
}

.tf-button.style-1:hover {
  background: var(--bh-primary);
  color: var(--bh-white);
}

.tf-button.style-1 span {
  color: var(--bh-primary);
}

.tf-button.style-1:hover span {
  color: var(--bh-white);
}



.tf-button.style-2 {
  border: 1px solid var(--bh-success);
  background: var(--bh-success);
  padding: 12px 20px;
  border-radius: 4px;
  color: var(--bh-white);
}

.tf-button.style-2:hover {
  background: var(--bh-primary);
  border-color: var(--bh-primary);
  color: var(--bh-white);
}

.tf-button.style-2 span {
  color: var(--bh-white);
  transition: all 0.3s ease-in-out;
}

.tf-button.style-2:hover span {
  color: var(--bh-primary);
}

.btn-mini {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--bh-success);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-success);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-mini:hover {
  background: var(--bh-success);
  color: var(--bh-white);
}

.share {
  color: var(--bh-primary);
}

.share:hover {
  color: var(--bh-success);
}

.share.is-scraped {
  color: var(--bh-success);
}

.share.is-scraped:hover {
  color: var(--bh-primary);
}

.breadcrumb-section {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 24, 39, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 6px 20px rgba(18, 24, 39, 0.05);
}

.breadcrumb-section.bg-f5 {
  background: linear-gradient(
    128deg,
    var(--bh-breadcrumb-soft-4) 0%,
    var(--bh-breadcrumb-soft-1) 36%,
    var(--bh-breadcrumb-soft-2) 62%,
    var(--bh-breadcrumb-soft-3) 100%
  );
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18, 24, 39, 0) 0%,
    rgba(18, 24, 39, 0.04) 46%,
    rgba(18, 24, 39, 0) 100%
  );
  pointer-events: none;
}

.breadcrumb-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.breadcrumb-section .page-title,
.breadcrumb-section .widget-menu-link {
  position: relative;
  z-index: 1;
  background: transparent;
}

.breadcrumb-section .widget-menu-link ul li a {
  transition: color 0.2s ease;
}

.breadcrumb-section .widget-menu-link ul li a:hover {
  color: var(--bh-primary);
}

.breadcrumb-section .widget-menu-link ul li.breadcrumb-current,
.breadcrumb-section .widget-menu-link ul li:last-child {
  font-weight: 600;
  color: var(--bh-dark);
}

.breadcrumb-section .widget-menu-link ul li::after {
  background-color: rgba(18, 24, 39, 0.2);
}

.breadcrumb-page-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 32px);
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
  min-height: 52px;
  min-width: 0;
}

.breadcrumb-page-title__nav {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.breadcrumb-page-title:has(.breadcrumb-page-title__summary) .breadcrumb-page-title__nav {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 58%;
}

.breadcrumb-page-title__nav .widget-menu-link {
  width: 100%;
  max-width: 100%;
  background: transparent;
}

.breadcrumb-page-title__nav .widget-menu-link ul {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-width: 0;
}

.breadcrumb-page-title__summary {
  flex: 0 1 auto;
  min-width: 0;
  width: auto;
  max-width: min(480px, 42%);
  margin: 0 0 0 auto;
  padding-left: 8px;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--bh-black-1st);
  text-align: right;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (min-width: 1200px) {
  .breadcrumb-page-title:has(.breadcrumb-page-title__summary) .breadcrumb-page-title__nav {
    max-width: 56%;
  }

  .breadcrumb-page-title__summary {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 44%;
  }
}

@media (min-width: 1400px) {
  .breadcrumb-page-title:has(.breadcrumb-page-title__summary) .breadcrumb-page-title__nav {
    max-width: 54%;
  }

  .breadcrumb-page-title__summary {
    min-width: 240px;
    max-width: 46%;
  }
}

@media (max-width: 1199px) {
  .breadcrumb-page-title__summary {
    display: none;
  }

  .breadcrumb-page-title:has(.breadcrumb-page-title__summary) .breadcrumb-page-title__nav,
  .breadcrumb-page-title__nav {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumb-page-title {
    min-height: 0;
  }
}

/* 긴 제목 브레드크럼: 앞 항목은 고정, 마지막만 말줄임 */
.widget-menu-link--truncate ul {
  flex-wrap: nowrap;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.widget-menu-link--truncate ul li:not(.breadcrumb-current) {
  flex-shrink: 0;
  white-space: nowrap;
}

.breadcrumb-page-title__nav .widget-menu-link--truncate ul li:not(.breadcrumb-current) {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 9em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb-page-title__nav .widget-menu-link--truncate ul li:not(.breadcrumb-current) a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget-menu-link--truncate ul li.breadcrumb-current {
  flex: 1 1 0%;
  min-width: 3rem;
  max-width: 100%;
  overflow: hidden;
  color: var(--bh-black);
}

.widget-menu-link--truncate .breadcrumb-current__text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* =========================================================
   Component: 입력 UI 키트 (bh-form-*)
   ========================================================= */
.bh-form-wrap .bh-form-control,
.bh-form-wrap .bh-form-select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background-color: #f5f5f5;
  color: var(--bh-dark);
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bh-form-wrap .bh-form-control {
  padding: 12px 20px;
}

/* 읽기 전용 — 편집 가능 인풋(#f5f5f5)과만 구분 */
.bh-form-wrap .bh-form-control[readonly],
.bh-form-wrap .bh-form-control:read-only,
.input-form[readonly],
.input-form:read-only,
.input-form.input-disabled[readonly],
.input-form[readonly].input-disabled,
.form-control[readonly]:not([type="file"]),
.form-control:read-only:not([type="file"]) {
  background-color: var(--bh-white);
  border: 1px dashed #c5cad1;
  color: var(--bh-black-1st);
  cursor: default;
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.04);
  opacity: 1;
  -webkit-text-fill-color: var(--bh-black-1st);
}



.bh-form-wrap .bh-form-control[readonly]:focus,
.bh-form-wrap .bh-form-control:read-only:focus,
.input-form[readonly]:focus,
.input-form:read-only:focus,
.input-form.input-disabled[readonly]:focus,
.input-form[readonly].input-disabled:focus,
.form-control[readonly]:focus,
.form-control:read-only:focus {
  border-color: #c5cad1;
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.04);
  outline: none;
}

.bh-form-wrap .bh-form-textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background-color: #f5f5f5;
  color: var(--bh-dark);
  font-size: 16px;
  line-height: 1.55;
  padding: 14px 20px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.bh-form-wrap .bh-form-select {
  padding: 12px 44px 12px 20px !important;
  text-align: left !important;
  text-align-last: left !important;
  -moz-text-align-last: left !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5.2 7.5a1 1 0 0 1 1.4 0L10 10.9l3.4-3.4a1 1 0 1 1 1.4 1.4l-4.1 4.1a1 1 0 0 1-1.4 0L5.2 8.9a1 1 0 0 1 0-1.4z' fill='%23111827'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
}

.bh-form-wrap .bh-form-control:focus,
.bh-form-wrap .bh-form-select:focus,
.bh-form-wrap .bh-form-textarea:focus {
  outline: none;
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(20, 160, 119, 0.15);
}

.bh-form-wrap .bh-form-select option {
  text-align: left;
}

.bh-form-wrap .bh-form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bh-form-wrap .bh-form-radio {
  position: relative;
}

.bh-form-wrap .bh-form-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bh-form-wrap .bh-form-radio label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
  color: var(--bh-dark);
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.bh-form-wrap .bh-form-radio input[type="radio"]:checked + label {
  border-color: var(--bh-primary);
  color: var(--bh-primary);
  background: var(--bh-light);
  font-weight: 600;
}

/* =========================================================
   Page: 알바캐디 지원폼
   ========================================================= */
.dc-tip-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--bh-light);
  border-left: 4px solid var(--bh-primary);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--bh-light) 0%, var(--bh-light) 100%);
  box-shadow: 0 6px 16px rgba(20, 160, 119, 0.08);
}

.dc-tip-box__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  background-color: var(--bh-primary);
  color: var(--bh-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dc-tip-box__text {
  color: var(--bh-dark);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.dc-avatar-picker {
  gap: 10px !important;
}

.dc-avatar-item {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  flex: 0 0 auto;
}

.dc-avatar-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dc-avatar-image {
  height: 48px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: var(--bh-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dc-avatar-item:hover .dc-avatar-image {
  border-color: var(--bh-black-2nd);
  transform: translateY(-1px);
}

.dc-avatar-radio:checked + .dc-avatar-image {
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(20, 160, 119, 0.18);
}

.dc-layer-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20000;
}

.dc-layer-popup.is-open {
  display: block;
}

.dc-layer-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.dc-layer-popup__panel {
  position: relative;
  width: min(560px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: var(--bh-white);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

.dc-layer-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--bh-light);
  background: var(--bh-light);
}

.dc-layer-popup__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.dc-layer-popup__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--bh-black-1st);
  cursor: pointer;
}

.dc-layer-popup__body {
  padding: 18px;
  color: var(--bh-dark);
  font-size: 15px;
  line-height: 1.55;
}

.dc-layer-popup__body p {
  margin-bottom: 10px;
}

.dc-layer-popup__body ul {
  margin: 0;
  padding-left: 20px;
}

.dc-layer-popup__body li + li {
  margin-top: 6px;
}

@media (max-width: 576px) {
  .dc-tip-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }

  .dc-avatar-picker {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .dc-avatar-picker::-webkit-scrollbar {
    height: 6px;
  }

  .dc-avatar-picker::-webkit-scrollbar-thumb {
    background: var(--bh-light);
    border-radius: 4px;
  }

  .dc-layer-popup__panel {
    width: calc(100% - 20px);
    margin-top: 6vh;
  }
}

/* =========================================================
   Page: 마이페이지
   ========================================================= */

.mypage-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.mypage-sidebar {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.mypage-sidebar .card-body {
  padding: 14px;
}

.mypage-sidebar-title {
  margin: 2px 2px 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--bh-dark);
}

.mypage-menu,
.mypage-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mypage-menu-scroll {
  position: relative;
}

/* 가로 스크롤 좌우 버튼 — 마이페이지 메뉴 · 위저드 단계 공통 */
.mypage-menu-scroll .mypage-scroll-arrow,
.resume-wizard-step-nav-shell .mypage-scroll-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.mypage-menu-scroll .mypage-scroll-arrow::before,
.resume-wizard-step-nav-shell .mypage-scroll-arrow::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2.5px solid #3d4450;
  border-right: 2.5px solid #3d4450;
  transform: rotate(-135deg);
  margin-left: 3px;
}

.mypage-menu-scroll .mypage-scroll-arrow.is-right::before,
.resume-wizard-step-nav-shell .mypage-scroll-arrow.is-right::before {
  transform: rotate(45deg);
  margin-left: 0;
  margin-right: 3px;
}

.mypage-menu-scroll .mypage-scroll-arrow:active,
.resume-wizard-step-nav-shell .mypage-scroll-arrow:active {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(18, 18, 18, 0.14);
}

.mypage-menu-scroll .mypage-scroll-arrow.is-hidden,
.resume-wizard-step-nav-shell .mypage-scroll-arrow.is-hidden {
  opacity: 0.3;
  pointer-events: none;
}

.mypage-menu-scroll .mypage-scroll-arrow.is-left,
.resume-wizard-step-nav-shell .mypage-scroll-arrow.is-left {
  left: 0;
}

.mypage-menu-scroll .mypage-scroll-arrow.is-right,
.resume-wizard-step-nav-shell .mypage-scroll-arrow.is-right {
  right: 0;
}

.mypage-menu li + li,
.mypage-nav-list li + li {
  margin-top: 4px;
}

.mypage-menu a,
.mypage-nav-list a {
  display: block;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--bh-black-1st);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mypage-menu a:hover,
.mypage-nav-list a:hover {
  color: var(--bh-dark);
  background: var(--bh-light);
  border-color: var(--bh-light);
}

.mypage-menu a.active,
.mypage-nav-list a.active {
  color: var(--bh-dark);
  background: var(--bh-light);
  border-color: var(--bh-light);
  font-weight: 700;
}

.mypage-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.mypage-panel {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  min-width: 0;
  max-width: 100%;
}

.mypage-panel .card-body {
  padding: 18px 18px;
}

.mypage-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mypage-panel-head h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  color: var(--bh-dark);
  line-height: 1.2;
}

.mypage-panel-head p {
  margin: 6px 0 0;
  color: var(--bh-black-1st);
  font-size: 14px;
}

.mypage-link-action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
  padding: 0 12px;
  color: var(--bh-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--bh-white);
}

.mypage-link-action:hover {
  color: var(--bh-dark);
  border-color: var(--bh-light);
  background: var(--bh-light);
}

.mypage-link-action.is-disabled.is-active {
  opacity: 1;
  background: rgba(20, 160, 119, 0.12);
  border-color: rgba(20, 160, 119, 0.35);
  color: var(--bh-primary);
}

.mypage-progress-card {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
  background: var(--bh-white);
}

.mypage-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mypage-progress-head span {
  color: var(--bh-dark);
  font-size: 14px;
  font-weight: 600;
}

.mypage-progress-head strong {
  color: var(--bh-primary);
  font-size: 30px;
  line-height: 1;
}

.mypage-progress-bar {
  height: 6px;
  border-radius: 4px;
  background: var(--bh-light);
  overflow: hidden;
}

.mypage-progress-bar > span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--bh-primary);
}

.mypage-resume-guide {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid rgba(0, 86, 179, 0.15);
  background: rgba(0, 86, 179, 0.04);
}

.mypage-resume-guide strong {
  color: var(--bh-dark);
}

.mypage-applicant-main {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}

.mypage-applicant-completion {
  flex: 1;
  min-width: 0;
}

.mypage-resume-completion {
  margin: 0;
}

.mypage-resume-completion-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.mypage-resume-completion-label {
  color: var(--bh-black-1st);
  font-size: 12px;
  font-weight: 600;
}

.mypage-resume-completion-head strong {
  color: var(--bh-dark);
  font-size: 20px;
  line-height: 1;
}

.mypage-resume-completion.is-ready .mypage-resume-completion-head strong {
  color: var(--bh-primary);
}

.mypage-resume-completion.is-required-incomplete .mypage-resume-completion-head strong {
  color: var(--bh-danger);
}

.mypage-resume-completion.is-low .mypage-resume-completion-head strong {
  color: var(--bh-warning);
}

.mypage-resume-completion-badge {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.mypage-resume-completion-badge.is-ready {
  color: var(--bh-primary);
  background: var(--bh-primary-muted);
}

.mypage-resume-completion-badge.is-blocked {
  color: var(--bh-danger);
  background: var(--bh-danger-soft);
}

.mypage-resume-completion-bar {
  height: 5px;
}

.mypage-resume-completion.is-ready .mypage-resume-completion-bar > span {
  background: var(--bh-primary);
}

.mypage-resume-completion.is-required-incomplete .mypage-resume-completion-bar > span {
  background: var(--bh-danger);
}

.mypage-resume-completion.is-low .mypage-resume-completion-bar > span {
  background: var(--bh-warning);
}

.mypage-resume-completion-hint {
  margin: 8px 0 0;
  color: var(--bh-black-1st);
  font-size: 12px;
  line-height: 1.5;
}

.mypage-resume-submit-hint {
  color: var(--bh-black-1st);
  font-size: 13px;
  line-height: 1.5;
}

.mypage-resume-submit-hint a {
  color: var(--bh-primary);
  text-decoration: underline;
}

.wd-form-rating .wrap-input select {
  width: 100%;
  height: 50px;
  padding: 12px 44px 12px 16px;
  border: 1px solid #c5cad1;
  border-radius: 8px;
  background-color: #f5f5f5;
  color: var(--bh-dark);
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5.2 7.5a1 1 0 0 1 1.4 0L10 10.9l3.4-3.4a1 1 0 1 1 1.4 1.4l-4.1 4.1a1 1 0 0 1-1.4 0L5.2 8.9a1 1 0 0 1 0-1.4z' fill='%23111827'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px 20px;
}

.wd-form-rating .wrap-input select:focus {
  outline: none;
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(20, 160, 119, 0.15);
}

.tf-button.is-disabled,
.btn-mini.is-disabled,
.job-util .is-disabled,
.tags .is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.mypage-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mypage-stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 112px;
  padding: 14px 14px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
  text-decoration: none;
  color: var(--bh-dark);
  background: var(--bh-white);
  transition: all 0.2s ease;
}

.mypage-stat-card .label {
  color: var(--bh-black-1st);
  font-size: 13px;
  font-weight: 600;
}

.mypage-stat-card strong {
  font-size: 22px;
  line-height: 1.05;
  color: var(--bh-dark);
}

.mypage-stat-card .meta, .mypage-stat-card .meta a {
  margin-top: auto;
  color: var(--bh-primary);
  font-size: 12px;
  font-weight: 600;
}

.mypage-stat-card:hover {
  border-color: var(--bh-light);
  transform: translateY(-1px);
}

.mypage-stat-card-combined {
  gap: 10px;
}

.mypage-stat-combined-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.mypage-stat-combined-item {
  flex: 1;
  min-width: 0;
}

.mypage-stat-combined-item strong {
  display: block;
}

.mypage-stat-combined-divider {
  width: 1px;
  background: var(--bh-light);
}

.mypage-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

h2.mypage-section-title {
  margin: 20px 0 10px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bh-dark);
}

.mypage-section-head a {
  color: var(--bh-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.mypage-section-head a:hover {
  color: var(--bh-primary);
}

.mypage-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mypage-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
  background: var(--bh-white);
  color: var(--bh-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mypage-quick-btn:hover {
  color: var(--bh-dark);
  border-color: var(--bh-light);
  background: var(--bh-light);
}

.mypage-quick-btn.is-primary {
  border-color: var(--bh-dark);
  background: var(--bh-dark);
  color: var(--bh-white);
}

.mypage-quick-btn.is-primary:hover {
  border-color: var(--bh-black);
  background: var(--bh-black);
  color: var(--bh-white);
}

.mypage-info-list {
  margin: 0;
}

.mypage-info-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed var(--bh-light);
}

.mypage-info-list div:last-child {
  border-bottom: 0;
}

.mypage-info-list dt {
  width: 70px;
  flex-shrink: 0;
  margin: 0;
  color: var(--bh-black-1st);
  font-size: 13px;
  font-weight: 600;
}

.mypage-info-list dd {
  margin: 0;
  color: var(--bh-dark);
  font-size: 14px;
  font-weight: 500;
  word-break: break-all;
}

@media (max-width: 1199px) {
  .mypage-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .mypage-panel-head h1 {
    font-size: 28px;
  }

  h2.mypage-section-title {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .mypage-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .mypage-sidebar,
  .mypage-sidebar .card-body,
  .mypage-menu-scroll {
    min-width: 0;
    max-width: 100%;
  }

  .mypage-page .tf-container {
    overflow-x: clip;
  }

  .mypage-sidebar .card-body {
    padding: 12px 10px;
  }

  .mypage-sidebar-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .mypage-menu-scroll {
    padding: 0 36px;
    overflow: hidden;
  }

  .mypage-menu-scroll .mypage-scroll-arrow {
    display: inline-flex;
  }

  .mypage-menu-scroll::before,
  .mypage-menu-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 2;
    pointer-events: none;
  }

  .mypage-menu-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 20%, rgba(255, 255, 255, 0));
  }

  .mypage-menu-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.92) 20%, rgba(255, 255, 255, 0));
  }

  .mypage-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    cursor: grab;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mypage-menu.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
  }

  .mypage-menu.is-dragging a {
    pointer-events: none;
  }

  .mypage-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }

  .mypage-menu li + li {
    margin-top: 0;
  }

  .mypage-menu li {
    flex: 0 0 auto;
  }

  .mypage-menu a {
    white-space: nowrap;
  }

  .mypage-stat-grid:not(.mypage-service-summary) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mypage-service-summary {
    grid-template-columns: 1fr;
  }

  .mypage-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .mypage-panel .card-body {
    padding: 12px 10px;
  }

  .mypage-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mypage-panel-head h1 {
    font-size: 24px;
  }

  h2.mypage-section-title {
    font-size: 16px;
  }

  .mypage-progress-head strong {
    font-size: 26px;
  }

  .mypage-stat-grid,
  .mypage-quick-grid {
    grid-template-columns: 1fr;
  }

  .mypage-company-page .mypage-stat-grid:not(.mypage-service-summary) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mypage-company-page .mypage-service-summary {
    grid-template-columns: 1fr;
  }

  .mypage-menu-scroll {
    padding: 0 34px;
  }

  .mypage-menu-scroll .mypage-scroll-arrow,
  .resume-wizard-step-nav-shell.has-overflow .mypage-scroll-arrow {
    width: 30px;
    height: 30px;
  }

  .mypage-menu-scroll .mypage-scroll-arrow::before,
  .resume-wizard-step-nav-shell.has-overflow .mypage-scroll-arrow::before {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .mypage-stat-card strong {
    font-size: 32px;
  }

  .mypage-stat-combined-row {
    gap: 10px;
  }
}

/* 마이페이지(기업) - 서브페이지 */
.mypage-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mypage-filter-tabs a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
  background: var(--bh-white);
  color: var(--bh-black-1st);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mypage-filter-tabs a:hover,
.mypage-filter-tabs a.active {
  color: var(--bh-dark);
  border-color: var(--bh-primary);
  background: rgba(20, 160, 119, 0.08);
}

.mypage-memo-list .mypage-memo-card {
  margin-bottom: 5px;
}
.mypage-memo-list .mypage-memo-card.is-unread {
  border-color: rgba(20, 160, 119, 0.35);
  background: rgba(20, 160, 119, 0.04);
}

.mypage-memo-card .mypage-applicant-head {
  align-items: flex-start;
}

.mypage-memo-card .mypage-memo-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.mypage-memo-card .mypage-memo-top-row .mypage-memo-sender {
  flex: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mypage-memo-card .mypage-memo-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.mypage-memo-card .mypage-memo-actions .mypage-memo-view-btn {
  justify-content: center;
  min-width: 88px;
  height: 32px;
  padding: 0 12px;
  white-space: nowrap;
  box-sizing: border-box;
}

.mypage-memo-card .mypage-memo-actions .mypage-chip.mypage-memo-del {
  flex: 0 0 auto;
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  font-size: 14px;
  box-sizing: border-box;
}

.mypage-memo-sender {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.mypage-memo-list .sv_wrap,
.mypage-memo-view .sv_wrap {
  display: none;
}

.mypage-memo-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(20, 160, 119, 0.12);
  color: var(--bh-primary);
  font-size: 11px;
  font-weight: 600;
}

.mypage-memo-help {
  color: var(--bh-black-1st);
  font-size: 13px;
}

.mypage-memo-captcha .mypage-captcha-label {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bh-dark);
}

.mypage-memo-captcha #captcha {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.mypage-memo-captcha .mypage-memo-captcha__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mypage-memo-captcha #captcha #captcha_img {
  display: block;
  flex: 0 0 auto;
  width: 160px;
  height: 60px;
  margin: 0;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
}

.mypage-memo-captcha #captcha #captcha_key {
  display: block;
  flex: 0 0 auto;
  width: 120px;
  height: 40px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.mypage-memo-captcha #captcha #captcha_mp3,
.mypage-memo-captcha #captcha #captcha_reload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 110px;
  height: 40px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
  color: var(--bh-dark);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.mypage-memo-captcha #captcha #captcha_mp3:hover,
.mypage-memo-captcha #captcha #captcha_reload:hover {
  border-color: var(--bh-primary);
  color: var(--bh-primary);
}

.mypage-memo-captcha #captcha #captcha_info {
  display: block;
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--bh-black-1st);
}

@media (max-width: 575px) {
  .mypage-memo-captcha .mypage-memo-captcha__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .mypage-memo-captcha #captcha #captcha_img,
  .mypage-memo-captcha #captcha #captcha_key,
  .mypage-memo-captcha #captcha #captcha_mp3,
  .mypage-memo-captcha #captcha #captcha_reload {
    width: 100%;
    max-width: 100%;
  }
}

.mypage-memo-body {
  padding: 16px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
  line-height: 1.7;
  word-break: break-word;
}

.mypage-memo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mypage-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
  background: var(--bh-white);
  color: var(--bh-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.mypage-chip:hover {
  border-color: var(--bh-primary);
  color: var(--bh-primary);
}

.mypage-chip.is-active {
  background: rgba(20, 160, 119, 0.12);
  border-color: rgba(20, 160, 119, 0.35);
  color: var(--bh-primary);
}

.mypage-chip.is-wait {
  background: var(--bh-light);
  color: var(--bh-black-1st);
}

.mypage-chip.is-danger {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.25);
}

.mypage-memo-card .mypage-memo-actions .mypage-chip.mypage-memo-del,
.mypage-memo-card .mypage-memo-actions .mypage-chip.mypage-memo-del i {
  color: var(--bh-black-2nd);
}

.mypage-memo-card .mypage-memo-actions .mypage-chip.mypage-memo-del {
  border-color: var(--bh-light);
  background: var(--bh-white);
}

.mypage-memo-card .mypage-memo-actions .mypage-chip.mypage-memo-del:hover {
  color: var(--bh-black-1st);
  border-color: var(--bh-midgray);
  background: var(--bh-light);
}

.mypage-memo-card .mypage-memo-actions .mypage-chip.mypage-memo-del:hover i {
  color: inherit;
}

.mypage-chip.is-icon-only {
  justify-content: center;
  padding: 0;
}

.mypage-chip.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.72;
}

.mypage-chip.is-disabled:hover {
  border-color: var(--bh-light);
  color: inherit;
}

.mypage-chip.is-disabled.is-active {
  opacity: 1;
  background: rgba(20, 160, 119, 0.12);
  border-color: rgba(20, 160, 119, 0.35);
  color: var(--bh-primary);
}

.mypage-interview-summary {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-light);
}

.mypage-interview-summary li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--bh-dark);
}

.mypage-interview-summary li + li {
  margin-top: 8px;
}

.mypage-interview-summary li span {
  min-width: 72px;
  color: var(--bh-black-1st);
}

.bh-form-wrap .bh-interview-message {
  min-height: 120px;
}

.mypage-job-card,
.mypage-applicant-card {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  padding: 16px;
  background: var(--bh-white);
}

.mypage-job-list > * + *,
.mypage-applicant-list > * + * {
  margin-top: 12px;
}

.mypage-job-card-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mypage-job-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mypage-job-card-logo {  
  width: auto;
  height: 48px;
  overflow: hidden;
  background: var(--bh-white);
  display: flex;
  box-sizing: border-box;
}

.mypage-job-card-logo img {
  object-fit: contain;
  object-position: center;
}

.mypage-job-card-company {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-black-1st);
  line-height: 1.35;
}

.mypage-job-card-body {
  min-width: 0;
}

.mypage-applicant-head {
}

.mypage-applicant-avatar {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
}

.mypage-applicant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.mypage-applicant-avatar.is-avatar-image {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  align-self: flex-start;
  overflow: visible;
  border-radius: 0;
}

.mypage-applicant-avatar.is-avatar-image img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center center;
}

.mypage-applicant-avatar--private {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: 1px solid var(--bh-lightgray);
}

.mypage-applicant-avatar--private .mypage-applicant-private-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--bh-black-2nd);
  letter-spacing: -0.02em;
}

.mypage-applicant-private-text {
  color: var(--bh-black-2nd);
}

.mypage-applicant-job {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--bh-black-1st);
}

.mypage-job-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-dark);
  line-height: 1.4;
}

.mypage-applicant-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-dark);
}

.mypage-job-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--bh-black-1st);
}

.mypage-applicant-meta {
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--bh-black-1st);
}

.mypage-job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mypage-job-meta-item i,
.mypage-job-meta-item [class^="icon-"] {
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1;
}

.mypage-job-card-date {
  gap: 10px;
  font-size: 12px;
  color: var(--bh-black-1st);
}

@media (max-width: 767px) {
  .mypage-job-card-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
  }

  .mypage-job-meta-item {
    min-width: 0;
    font-size: 12px;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.mypage-job-card-foot,
.mypage-applicant-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  padding-top: 5px;
  border-top: 1px solid var(--bh-light);
}

.mypage-job-card-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.mypage-job-card-stats a {
  color: var(--bh-dark);
  text-decoration: none;
}

.mypage-job-card-stats strong {
  color: var(--bh-primary);
}

.mypage-job-card-date,
.mypage-applicant-date {
  font-size: 12px;
  color: var(--bh-black-1st);
}

.mypage-job-card-actions,
.mypage-applicant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mypage-applicant-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-dark);
}

.mypage-form-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mypage-form-section-head p {
  color: var(--bh-primary);
  margin-bottom: 15px;
}

.mypage-form-section-head .mypage-form-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-dark);
}

.mypage-form-section-head .mypage-form-section-right {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 12px;
}

.mypage-form-help {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bh-warning);
  text-align: right;
}

.bh-form-wrap .bh-job-form-fields .form-label {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 2px 0;
}

.bh-form-wrap .bh-input-inline {
  width: auto;
  max-width: 180px;
  min-width: 150px;
}

.bh-form-wrap .bh-form-field:has(.bh-form-unit) {
  position: relative;
}

.bh-form-wrap .bh-form-field:has(.bh-form-unit) .bh-form-control {
  padding-right: 40px;
}

.bh-form-wrap .bh-form-field .bh-form-unit {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--bh-black-1st);
  pointer-events: none;
  user-select: none;
}

.bh-form-wrap .bh-job-inline-row .checkbox-item {
  width: auto;
  min-height: auto;
}

.bh-form-wrap .checkbox-group {
  gap: 12px 20px;
  min-height: auto;
  padding: 4px 0;
}

.bh-form-wrap .checkbox-item label {
  font-size: 14px;
  margin-left: 8px;
  color: var(--bh-dark);
}

.mypage-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.mypage-company-logo-preview {
  max-height: 70px;
  border-radius: 4px;
  border: 1px solid var(--bh-light);
}

.bh-form-wrap .grade-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0 0;
  padding: 15px 0 10px;
  border-top: 1px solid var(--bh-light);
}

.bh-form-wrap .grade-wrap:first-child {
  border-top: 0;
  padding-top: 0;
}

.bh-form-wrap .grade-wrap .grade-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}

.bh-form-wrap .grade-wrap .grade-inner > label {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  color: var(--bh-dark);
}

.bh-form-wrap .grade-wrap .grade-inner-label-placeholder {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  visibility: hidden;
}

.bh-form-wrap .grade-wrap .grade-inner-control {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.bh-form-wrap .grade-wrap .grade-inner--career-action .checkbox-item {
  width: auto;
  min-height: 48px;
  align-items: center;
}

.bh-form-wrap .grade-wrap .career-remove-btn {
  margin: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resume-career-list,
.resume-edu-list,
.resume-region-list,
.resume-type-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resume-career-card,
.resume-edu-card,
.resume-region-card,
.resume-type-card {
  border: 1px solid var(--bh-lightgray);
  border-radius: 8px;
  background: #fafbfc;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.resume-career-card-head,
.resume-edu-card-head,
.resume-region-card-head,
.resume-type-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bh-lightgray);
}

.resume-career-card-title,
.resume-edu-card-title,
.resume-region-card-title,
.resume-type-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bh-dark);
}

.resume-career-card .grade-wrap,
.resume-career-card .resume-career-card-body,
.resume-edu-card .grade-wrap,
.resume-edu-card .resume-edu-card-body,
.resume-region-card .grade-wrap,
.resume-region-card .resume-region-card-body,
.resume-type-card .grade-wrap,
.resume-type-card .resume-type-card-body {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.resume-career-card-head .career-remove-btn {
  min-height: 36px;
  padding: 6px 12px;
}

.bh-tinymce-wrap {
  width: 100%;
  max-width: 900px;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

.bh-tinymce-wrap .tox-tinymce {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  border: 1px solid var(--bh-lightgray);
  border-radius: 8px;
}

.bh-tinymce-wrap .tox .tox-editor-container,
.bh-tinymce-wrap .tox .tox-sidebar-wrap,
.bh-tinymce-wrap .tox .tox-edit-area,
.bh-tinymce-wrap .tox .tox-toolbar,
.bh-tinymce-wrap .tox .tox-toolbar__primary,
.bh-tinymce-wrap .tox .tox-statusbar {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

.bh-tinymce-wrap .tox .tox-edit-area__iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  background: var(--bh-white);
}

.mypage-resume-view-avatar {
  width: 120px;
  height: auto;
}

.mypage-resume-detail-view .mypage-applicant-head > .flex-grow-1 {
  min-width: 0;
  flex: 1 1 220px;
}

.mypage-resume-detail-view .mypage-resume-view-avatar.is-profile-photo {
  flex: 0 0 auto;
  width: 300px;
  max-width: 100%;
  height: auto;
  text-align: center;
}

.mypage-resume-detail-view .mypage-resume-view-avatar.is-profile-photo img {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

.mypage-resume-detail-view .mypage-resume-view-avatar.is-avatar-image {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  max-width: 100%;
  text-align: center;
}

.mypage-resume-detail-view .mypage-resume-view-avatar.is-avatar-image img {
  width: 100px;
  height: 100px;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .mypage-resume-detail-view .mypage-applicant-head {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .mypage-resume-detail-view .mypage-applicant-head > .flex-grow-1 {
    width: 100%;
    flex: 1 1 auto;
  }

  .mypage-resume-detail-view .mypage-resume-view-avatar.is-profile-photo,
  .mypage-resume-detail-view .mypage-resume-view-avatar.is-profile-photo img {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .mypage-resume-detail-view .mypage-resume-view-avatar.is-avatar-image,
  .mypage-resume-detail-view .mypage-resume-view-avatar.is-avatar-image img {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  .mypage-resume-detail-view .mypage-form-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mypage-resume-detail-view .mypage-form-section-head .mypage-form-section-right {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .mypage-resume-detail-view > .card-body > h2,
  .mypage-resume-detail-view .mypage-form-section-head h2 {
    font-size: 18px;
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

.mypage-resume-view-summary {
  margin-top: 8px;
}

.mypage-resume-view-summary dt {
  width: 88px;
}

.mypage-resume-view-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bh-light);
}

.mypage-resume-view-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-black);
}

.mypage-resume-view-title span {
  font-size: 14px;
  font-weight: 500;
  color: var(--bh-black-1st);
}

.mypage-resume-view-table {
  width: 100%;
  border-top: 1px solid var(--bh-lightgray);
  border-left: 1px solid var(--bh-lightgray);
  border-collapse: collapse;
  background: var(--bh-white);
}

.mypage-resume-view-table th,
.mypage-resume-view-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--bh-lightgray);
  border-right: 1px solid var(--bh-lightgray);
  vertical-align: middle;
  font-size: 14px;
}

.mypage-resume-view-table th {
  background: var(--bh-breadcrumb-soft-1);
  color: var(--bh-black-1st);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.mypage-resume-view-table td {
  color: var(--bh-black);
}

.mypage-resume-career-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mypage-resume-career-card {
  border: 1px solid var(--bh-lightgray);
  border-radius: 8px;
  background: #fafbfc;
  padding: 14px;
}

.mypage-resume-career-card .mypage-info-list dt {
  width: 88px;
}

@media (max-width: 767px) {
  .mypage-resume-view-summary dt,
  .mypage-resume-career-card .mypage-info-list dt {
    width: 72px;
  }

  .mypage-resume-view-table th,
  .mypage-resume-view-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

.bh-form-wrap .avatar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 10px 0;
  max-width: 100%;
  list-style: none;
  margin: 0;
}

.bh-form-wrap .avatar-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  min-width: 60px;
  text-align: center;
}

.bh-form-wrap .avatar-list img {
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin: 0;
}

.bh-form-wrap .avatar-list input[type="radio"] {
  display: none;
}

.bh-form-wrap .avatar-list label {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.bh-form-wrap .avatar-list input[type="radio"]:checked + label img {
  border: 2px solid var(--bh-primary);
  box-shadow: 0 0 5px rgba(255, 94, 58, 0.3);
}

/* 이력서 등록 스텝 위저드 */
.resume-wizard-card {
  width: 980px;
  margin: 0 auto;
}

@media (max-width: 979px) {
  .resume-wizard-card {
    width: 100%;
  }
}

.resume-wizard-card .card-body {
  padding-bottom: 0;
  min-width: 0;
  max-width: 100%;
}

.resume-wizard {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  min-width: 0;
  max-width: 100%;
}

.resume-wizard-header {
  position: relative;
  margin-bottom: 16px;
  min-width: 0;
  max-width: 100%;
}

body.wizard-focus-page .resume-wizard-header {
  position: sticky;
  top: var(--resume-wizard-sticky-top, 0px);
  z-index: 50;
  background: var(--bh-white);
  padding-top: 6px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}

body.wizard-focus-page .resume-wizard-header.is-stuck {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

body.wizard-focus-page .resume-wizard-header.is-stuck::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--bh-light);
}

.resume-wizard-step-nav-shell {
  position: relative;
  margin-bottom: 12px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.resume-wizard-step-nav-shell.has-overflow {
  padding: 0 36px;
}

.resume-wizard-step-nav-shell.has-overflow .mypage-scroll-arrow {
  display: inline-flex;
}

.resume-wizard-step-nav-shell.has-overflow::before,
.resume-wizard-step-nav-shell.has-overflow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  z-index: 2;
  pointer-events: none;
}

.resume-wizard-step-nav-shell.has-overflow::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 20%, rgba(255, 255, 255, 0));
}

.resume-wizard-step-nav-shell.has-overflow::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.92) 20%, rgba(255, 255, 255, 0));
}

.resume-wizard-step-nav {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.resume-wizard-step-nav::-webkit-scrollbar {
  display: none;
}

.wizard-completion-panel {
  margin-bottom: 12px;
  min-width: 0;
  max-width: 100%;
}

.wizard-completion-panel-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  min-width: 0;
}

.wizard-completion-panel-label {
  color: var(--bh-black-1st);
  font-size: 12px;
  font-weight: 600;
}

.wizard-completion-panel-rate {
  color: var(--bh-dark);
  font-size: 18px;
  line-height: 1;
}

.wizard-completion-panel.is-ready .wizard-completion-panel-rate {
  color: var(--bh-primary);
}

.wizard-completion-panel.is-mid .wizard-completion-panel-rate {
  color: var(--bh-success);
}

.wizard-completion-panel.is-low .wizard-completion-panel-rate {
  color: var(--bh-warning);
}

.wizard-completion-panel.is-critical .wizard-completion-panel-rate,
.wizard-completion-panel.is-required-incomplete .wizard-completion-panel-rate {
  color: var(--bh-danger);
}

.wizard-completion-panel.is-ready .wizard-completion-panel-bar > span {
  background: var(--bh-primary);
}

.wizard-completion-panel.is-mid .wizard-completion-panel-bar > span {
  background: var(--bh-success);
}

.wizard-completion-panel.is-low .wizard-completion-panel-bar > span {
  background: var(--bh-warning);
}

.wizard-completion-panel.is-critical .wizard-completion-panel-bar > span,
.wizard-completion-panel.is-required-incomplete .wizard-completion-panel-bar > span {
  background: var(--bh-danger);
}

.resume-wizard-step-chip {
  flex: 0 0 auto;
  border: 1px solid var(--bh-light);
  background: var(--bh-white);
  color: var(--bh-dark);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.resume-wizard-step-chip.is-active {
  border-color: var(--bh-primary);
  background: var(--bh-primary-soft);
  color: var(--bh-primary);
  font-weight: 600;
}

.resume-wizard-panels {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.resume-wizard-form,
.resume-wizard .bh-form-wrap {
  min-width: 0;
  max-width: 100%;
}

.resume-step-panel {
  display: none;
}

.resume-step-panel.is-active {
  display: block;
}

.resume-step-body {
  padding-bottom: 12px;
}

.resume-wizard-footer {
  position: sticky;
  bottom: 0;
  z-index: 20;
  padding: 16px 0;
  margin-top: 8px;
  background: linear-gradient(to top, var(--bh-white) 75%, rgba(255, 255, 255, 0));
}

.resume-wizard-footer-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.resume-wizard-btn-exit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bh-light);
  border-radius: 8px;
  background: var(--bh-white);
  color: var(--bh-dark);
  text-decoration: none;
}

.resume-wizard-btn-exit:hover {
  color: var(--bh-primary);
  border-color: var(--bh-primary);
}

.resume-wizard-btn-sheet {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--bh-light);
  border-radius: 8px;
  background: var(--bh-white);
  color: var(--bh-dark);
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}

.resume-wizard-bar-progress {
  font-weight: 700;
  color: var(--bh-primary);
  white-space: nowrap;
}

.resume-wizard-bar-step {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-weight: 500;
}

.resume-wizard-bar-chevron {
  flex-shrink: 0;
  font-size: 11px;
  opacity: 0.55;
}

.resume-wizard-footer-actions {
  display: flex;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.resume-wizard-footer-actions .tf-button {
  flex: 1;
  min-height: 48px;
  min-width: 0;
  margin: 0;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.resume-wizard-footer-actions .resume-wizard-btn-prev:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

body.wizard-focus-page .mypage-layout--wizard-focus {
  grid-template-columns: minmax(0, 1fr);
}

body.wizard-focus-page .mypage-layout--wizard-focus .mypage-sidebar {
  display: none;
}

body.wizard-focus-page #scroll-top,
body.wizard-focus-page #scroll-top.show {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.wizard-form-toast {
  position: fixed;
  left: 50%;
  bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(12px);
  z-index: 10050;
  max-width: min(92vw, 360px);
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wizard-form-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.wizard-step-sheet {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.wizard-step-sheet[hidden] {
  display: none !important;
}

.wizard-step-sheet.is-open {
  pointer-events: auto;
}

.wizard-step-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.wizard-step-sheet.is-open .wizard-step-sheet__backdrop {
  opacity: 1;
}

.wizard-step-sheet__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(70vh, 520px);
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
  background: var(--bh-white);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.16);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.wizard-step-sheet.is-open .wizard-step-sheet__panel {
  transform: translateY(0);
}

.wizard-step-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 8px;
  border-bottom: 1px solid var(--bh-light);
}

.wizard-step-sheet__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-dark);
}

.wizard-step-sheet__close {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--bh-muted);
  cursor: pointer;
  padding: 4px 8px;
}

.wizard-step-sheet__list {
  list-style: none;
  margin: 0;
  padding: 8px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
}

.wizard-step-sheet__item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--bh-dark);
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.wizard-step-sheet__item.is-active {
  background: var(--bh-primary-soft);
  color: var(--bh-primary);
  font-weight: 600;
}

.wizard-step-sheet__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bh-light);
  font-size: 13px;
  font-weight: 700;
}

.wizard-step-sheet__item.is-active .wizard-step-sheet__num {
  background: var(--bh-primary);
  color: #fff;
}

.wizard-step-sheet__label {
  flex: 1;
  min-width: 0;
}

body.wizard-step-sheet-open {
  overflow: hidden;
}

.bh-form-control.is-invalid,
.bh-form-select.is-invalid,
.form-control.is-invalid {
  border-color: var(--bh-danger) !important;
}

.resume-profile-tabs {
  width: 100%;
}

.resume-profile-tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.resume-profile-tab-btn {
  flex: 1;
  min-height: 44px;
  border: 1px solid var(--bh-light);
  border-radius: 8px;
  background: var(--bh-white);
  color: var(--bh-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.resume-profile-tab-btn.active {
  border-color: var(--bh-primary);
  background: #e8f7f1;
  color: var(--bh-primary);
  font-weight: 700;
}

.resume-step-panel .bh-form-control,
.resume-step-panel .bh-form-select,
.resume-step-panel .form-control {
  font-size: 16px;
}

.resume-step-panel .grade-wrap .bh-form-control,
.resume-step-panel .grade-wrap .bh-form-select {
  width: 100%;
  max-width: none !important;
}

@media (max-width: 767px) {
  .resume-wizard .bh-form-wrap .bh-input-inline {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

}

@media (max-width: 767px) {
  body.wizard-focus-page .mypage-layout.wow {
    transform: none !important;
    animation: none !important;
  }

  .resume-wizard-footer,
  .resume-wizard-footer.resume-wizard-footer--docked {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    width: auto;
    z-index: 10030;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--bh-light);
    border-radius: 12px;
    background: var(--bh-white);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
  }

  body.wizard-focus-page .resume-wizard-panels,
  body.wizard-footer-docked .resume-wizard-panels {
    padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .resume-wizard-btn-sheet {
    display: none;
  }

  .resume-wizard-footer-actions {
    flex: 1 1 0;
    min-width: 0;
  }

  .resume-wizard-footer-actions .tf-button {
    flex: 1 1 50%;
  }

  .wizard-form-toast {
    bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }

  body.wizard-focus-page,
  body.wizard-footer-docked {
    --aichat-scroll-top-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 768px) {
  .resume-wizard-footer-bar {
    position: relative;
    justify-content: center;
  }

  .resume-wizard-btn-exit {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .resume-wizard-btn-sheet {
    display: none;
  }

  .resume-wizard-footer-actions {
    flex: 0 1 auto;
    width: auto;
    max-width: none;
  }

  .resume-wizard-footer-actions .tf-button {
    flex: 0 1 auto;
    min-width: 120px;
    width: auto;
    white-space: nowrap;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.mypage-postcode-wrap {
  display: none;
  border: 1px solid var(--bh-light);
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 8px 0 0;
  position: relative;
}

.mypage-postcode-close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -1px;
  z-index: 1;
}

/* 우편번호 찾기 — 레이어 팝업 */
.mypage-postcode-dim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(18, 18, 18, 0.5);
}

.mypage-postcode-layer {
  display: none;
  position: fixed;
  z-index: 10051;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(18, 18, 18, 0.22);
}

.mypage-postcode-layer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bh-light);
  background: #fff;
}

.mypage-postcode-layer__head strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-dark);
}

.mypage-postcode-layer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--bh-light);
  color: var(--bh-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mypage-postcode-layer__close:hover {
  background: var(--bh-lightgray);
}

.mypage-postcode-layer__body {
  width: 100%;
  height: 460px;
  position: relative;
  overflow: hidden;
}

body.is-postcode-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .mypage-postcode-layer {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 4px;
  }

  .mypage-postcode-layer__body {
    height: min(460px, calc(100vh - 88px));
  }
}

.mypage-service-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .mypage-service-summary,
  .mypage-company-page .mypage-service-summary {
    grid-template-columns: 1fr;
  }

  .mypage-job-card-foot,
  .mypage-applicant-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bh-job-section {
  margin-bottom: 15px;
}

.bh-job-section-item {
  margin-top: 15px !important;
}

/* 입력폼 인라인·주소 블록 */
.bh-form-inline-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bh-form-address-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bh-form-address-postcode {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.bh-form-address-postcode .bh-form-control {
  flex: 0 0 auto;
  width: auto;
  min-width: 140px;
  max-width: 180px;
}

.bh-form-address-block .bh-form-control,
.bh-form-address-block .mypage-postcode-wrap {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .bh-form-wrap .grade-wrap,
  .join-form .grade-wrap {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    align-items: start;
  }

  .bh-form-wrap .grade-wrap .grade-inner,
  .join-form .grade-wrap .grade-inner {
    width: auto !important;
    min-width: 0;
    max-width: none;
  }

  .bh-form-inline-grid:not(.bh-form-inline-grid--3),
  .bh-form-wrap .bh-job-section-item .d-flex.gap-2:has(> .bh-form-control):not(:has(> .bh-form-control:nth-child(3):last-child)),
  .bh-form-wrap .bh-job-section-item .d-flex.gap-2:has(> .bh-form-select):not(:has(> .bh-form-select:nth-child(3):last-child)),
  .bh-form-wrap .bh-job-section-item .d-flex.gap-2:has(> select):not(:has(> select:nth-child(3):last-child)) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    align-items: center;
  }

  .bh-form-inline-grid--3,
  .bh-form-wrap .bh-job-section-item .d-flex.gap-2:has(> .bh-form-control:nth-child(3):last-child),
  .bh-form-wrap .bh-job-section-item .d-flex.gap-2:has(> .bh-form-select:nth-child(3):last-child),
  .bh-form-wrap .bh-job-section-item .d-flex.gap-2:has(> select:nth-child(3):last-child) {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
    align-items: center;
  }

  /* 섹션 행: 2열 CSS Grid (단일 입력만 반쪽, 나머지는 전체 너비) */
  .bh-form-wrap .row.bh-job-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 0;
    align-items: start;
    margin-left: 0;
    margin-right: 0;
  }

  .bh-form-wrap .row.bh-job-section > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item,
  .bh-form-wrap .row.bh-job-section > [class*="col-md-"] {
    grid-column: span 1;
  }

  .bh-form-wrap .row.bh-job-section > .bh-job-section-item--full,
  .bh-form-wrap .row.bh-job-section > .col-12:not(.bh-job-section-item),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.bh-form-address-block),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(> .bh-form-control ~ .bh-form-control),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(> .bh-form-select ~ .bh-form-select),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(> button),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.d-flex > select:nth-child(3)),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.d-flex > .bh-form-select:nth-child(3)),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(textarea),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.bh-form-textarea),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.bh-tinymce-wrap),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(input[type="file"]),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.resume-career-list),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.resume-edu-list),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.resume-region-list),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.resume-type-list),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.resume-profile-tabs),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.avatar-list),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.checkbox-group),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.bh-form-radio-group),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.form-check),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.mypage-link-action),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:has(.bh-job-inline-row),
  .bh-form-wrap .row.bh-job-section > .col-12.bh-job-section-item:not(:has(.bh-form-control, .bh-form-select, select, textarea, .checkbox-group, .bh-form-radio-group, .form-check, button)) {
    grid-column: 1 / -1;
  }

  .bh-form-wrap .row.bh-job-section > .col-12 > .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 0;
    margin: 0;
    width: 100%;
  }

  .bh-form-wrap .row.bh-job-section > .col-12 > .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .bh-form-wrap .bh-job-section-item .form-label {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .resume-step-panel .grade-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .resume-step-panel .grade-wrap .grade-inner {
    width: 100%;
  }
}

/* =========================================================
   Page: 뉴스 (news)
   ========================================================= */
.news-page-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 8px;
}

.news-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  padding: 3px 20px;
  font-size: 13px;
  color: var(--bh-black-1st);
  text-decoration: none;
  background: var(--bh-white);
}

.news-chip.active,
.news-chip:hover {
  color: var(--bh-white);
  background: var(--bh-primary);
  border-color: var(--bh-primary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
}

.news-card {
  min-width: 0;
}

.news-thumb-link {
  display: block;
  position: relative;
  aspect-ratio: 10 / 6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--bh-light);
}

.news-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.news-meta {
  font-size: 13px;
  color: var(--bh-primary);
  margin-bottom: 6px;
  font-weight: 600;
}

.news-title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.news-title a {
  color: var(--bh-black);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--bh-primary);
}

.news-summary {
  margin: 8px 0 0;
  color: var(--bh-black-1st);
  font-size: 15px;
  line-height: 1.5;
}

.news-card-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.news-card-tags a {
  display: inline-flex;
  align-items: center;
  background-color: var(--bh-light);
  color: var(--bh-secondary);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: -0.02em;
  cursor: default;
}

.news-card-tags a:hover {
  background: var(--bh-light);
}

.news-view-title {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}

.news-view-date {
  color: var(--bh-black-1st);
  font-size: 14px;
}

.news-view-thumb {
  border-radius: 4px;
  overflow: hidden;
}

.news-view-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-view-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bh-dark);
}

.news-view-body img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   Page: 고객센터 (/web/customer)
   ========================================================= */
.customer-page .customer-section {
  background: var(--bh-white);
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  padding: 20px;
}

.customer-faq-item,
.customer-qna-item {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
}

.customer-faq-item + .customer-faq-item,
.customer-qna-item + .customer-qna-item {
  margin-top: 10px;
}

.customer-faq-item summary,
.customer-qna-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-faq-item summary::-webkit-details-marker,
.customer-qna-item summary::-webkit-details-marker {
  display: none;
}

.customer-faq-item .faq-q {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--bh-primary);
  color: var(--bh-white);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-faq-item .faq-subject,
.customer-qna-item .qna-subject {
  color: var(--bh-dark);
  font-weight: 600;
}

.customer-faq-item .faq-answer {
  padding: 0 16px 16px;
  color: var(--bh-dark);
  line-height: 1.65;
}

.customer-qna-item .qna-status {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 10px;
}

.customer-qna-item .qna-status.wait {
  background: var(--bh-success);
  color: var(--bh-white);
}

.customer-qna-item .qna-status.done {
  background: rgba(20, 160, 119, 0.12);
  color: var(--bh-primary);
}

.customer-qna-item .customer-qna-head {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bh-light);
  background: var(--bh-light);
}

.customer-qna-item .qna-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(20, 160, 119, 0.12);
  color: var(--bh-primary);
  font-size: 12px;
  font-weight: 700;
}

.customer-qna-item .qna-date {
  margin-left: auto;
  color: var(--bh-black-2nd);
  font-size: 13px;
}

.customer-qna-item .qna-detail {
  border-top: 1px solid var(--bh-light);
  padding: 14px 16px 16px;
}

.customer-qna-item .qna-detail p {
  margin: 8px 0 0;
  color: var(--bh-dark);
  line-height: 1.6;
}

.customer-qna-item .qna-answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--bh-light);
}

.customer-qna-item .qna-answer.waiting {
  color: var(--bh-black-1st);
  font-size: 14px;
}

@media (max-width: 768px) {
  .customer-qna-item .customer-qna-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .customer-qna-item .qna-date {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
}

.customer-qna-write {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  padding: 16px;
}

.customer-hub-card {
  background: var(--bh-white);
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  padding: 24px;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-hub-card:hover {
  border-color: var(--bh-primary);
  box-shadow: 0 4px 12px rgba(20, 160, 119, 0.12);
}

.customer-hub-card h2 {
  color: var(--bh-dark);
}

/* 고객센터 메인 (/web/customer/) */
.customer-home-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(20, 160, 119, 0.08) 0%, var(--bh-white) 48%);
}

.customer-home-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bh-primary);
}

.customer-home-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--bh-dark);
  line-height: 1.3;
}

.customer-home-lead {
  margin: 0;
  max-width: 520px;
  color: var(--bh-black-2nd);
  line-height: 1.65;
}

.customer-home-hero-main {
  flex: 1 1 280px;
  min-width: 0;
}

.customer-home-contact {
  flex: 0 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bh-white);
  border: 1px solid var(--bh-light);
  border-radius: 4px;
}

.customer-home-contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--bh-black-2nd);
  margin-bottom: 4px;
}

.customer-home-contact-value {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--bh-dark);
  text-decoration: none;
}

a.customer-home-contact-value:hover {
  color: var(--bh-primary);
}

.customer-home-contact-note {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--bh-black-2nd);
}

.customer-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.customer-home-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.customer-home-card:hover {
  border-color: var(--bh-primary);
  box-shadow: 0 6px 18px rgba(20, 160, 119, 0.1);
  transform: translateY(-1px);
}

.customer-home-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(20, 160, 119, 0.1);
  color: var(--bh-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.customer-home-card-body {
  flex: 1;
  min-width: 0;
}

.customer-home-card-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.customer-home-card-top strong {
  font-size: 16px;
  color: var(--bh-dark);
}

.customer-home-card-top em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--bh-primary);
  background: rgba(20, 160, 119, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.customer-home-card-desc {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bh-black-2nd);
}

.customer-home-card-arrow {
  flex-shrink: 0;
  margin-top: 10px;
  color: var(--bh-black-2nd);
  font-size: 20px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.customer-home-card:hover .customer-home-card-arrow {
  color: var(--bh-primary);
  transform: translateX(2px);
}

.customer-home-panel {
  padding: 22px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
}

.customer-home-panel-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bh-dark);
}

.customer-home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.customer-home-steps li {
  padding: 16px;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-light);
}

.customer-home-steps .step-num {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--bh-primary);
}

.customer-home-steps strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--bh-dark);
}

.customer-home-steps p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--bh-black-2nd);
}

.customer-home-faq-cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--bh-primary);
  background: rgba(20, 160, 119, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.customer-home-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.customer-home-faq-list li + li {
  border-top: 1px solid var(--bh-light);
}

.customer-home-faq-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--bh-dark);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.45;
}

.customer-home-faq-list a:hover {
  color: var(--bh-primary);
}

.customer-home-faq-list .faq-q {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--bh-primary);
  color: var(--bh-white);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-home-link-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--bh-primary);
  text-decoration: none;
}

.customer-home-link-more:hover {
  text-decoration: underline;
}

.customer-home-empty {
  color: var(--bh-black-2nd);
  font-size: 14px;
}

.customer-home-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--bh-primary) 0%, #0f7f5f 100%);
  color: var(--bh-white);
}

.customer-home-banner-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.customer-home-banner h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bh-white);
}

.customer-home-banner p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}

.customer-home-banner .tf-button.style-2 {
  align-self: flex-start;
  background: var(--bh-white);
  border-color: var(--bh-white);
  color: var(--bh-primary);
}

.customer-home-banner .tf-button.style-2:hover {
  background: var(--bh-light);
  border-color: var(--bh-light);
  color: var(--bh-dark);
}

.menu-mobile-popup #menu-primary-menu > li.menu-item-has-children-mobile > .sub-menu-mobile a {
  line-height: 1.4;
  padding: 10px 0 10px 12px;
  font-size: 15px;
  font-weight: 500;
}

.customer-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.customer-notice-item {
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  background: var(--bh-white);
}

.customer-notice-item + .customer-notice-item {
  margin-top: 10px;
}

.customer-notice-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}

.customer-notice-link:hover {
  background: rgba(20, 160, 119, 0.04);
}

.customer-notice-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--bh-primary);
  background: rgba(20, 160, 119, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
}

.customer-notice-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.customer-notice-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--bh-dark);
  line-height: 1.4;
}

.customer-notice-summary {
  display: block;
  font-size: 14px;
  color: var(--bh-black-2nd);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-notice-meta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bh-black-2nd);
  font-size: 13px;
}

.customer-notice-view-wrap .news-view-title {
  font-size: 28px;
}

@media (max-width: 768px) {
  .customer-notice-link {
    flex-wrap: wrap;
  }

  .customer-notice-meta {
    width: 100%;
    justify-content: space-between;
  }

  .customer-notice-summary {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 991px) {
  .customer-home-grid {
    grid-template-columns: 1fr;
  }

  .customer-home-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .customer-home-hero {
    padding: 20px 18px;
  }

  .customer-home-contact {
    flex: 1 1 100%;
  }
}

@media (max-width: 1199px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-page-title {
    font-size: 24px;
  }
  .news-view-title {
    font-size: 28px;
  }
  .home-column-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .home-column-wrap {
    margin-left: 0;
    width: 100%;
  }
  .home-column-body {
    padding: 12px;
  }
  .home-column-title {
    font-size: 17px;
  }
  .home-column-thumb {
    min-height: 220px;
    max-height: none;
  }
}

/* Main hero slider (migrated from tf-slider sl1 parallax) */
.home-hero-slider {
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.home-hero-main {
  padding-top: 170px;
  padding-bottom: 10px;
}

.home-hero-main h1 {
  font-size: 55px;
}

@media (max-width: 768px) {
  .home-hero-main h1 {
    font-size: 40px;
  }
}

.home-hero-slider .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 30, 0.7) 0%, rgba(10, 10, 30, 0.3) 100%);
  pointer-events: none;
}

.home-hero-slider:not(.home-hero-has-bg-image) .overlay {
  display: none;
}

.home-hero-slider .content {
  position: relative;
  z-index: 1;
}

.home-hero-slider h2.text-white,
.home-hero-slider p.text-white,
.home-hero-slider h1.text-white {
  color: var(--bh-white);
}

.home-hero-slider h2 {
  text-transform: capitalize;
  font-size: 30px;
}

.home-hero-slider .heading {
  margin-bottom: 15px;
}

.home-hero-slider .heading h1 {
  margin: 10px 0 5px 0;
}

.home-hero-slider .heading p {
  padding-right: 280px;
  font-family: "Pretendard";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

.home-hero-slider .form-sl {
  margin-top: 22px;
  margin-bottom: 20px;
}

.home-hero-slider .form-sl .row-group-search {
  margin-right: -20px;
  padding: 16px;
  border-radius: 4px;
  background: var(--bh-white);
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
}

.home-hero-slider .form-sl .form-group-1,
.home-hero-slider .form-sl .form-group-2 {
  position: relative;
  flex-grow: 1;
}

.home-hero-slider .form-sl .form-group-1 {
  max-width: 384px;
}

.home-hero-slider .form-sl .form-group-1 input {
  margin-left: 0;
  padding-left: 40px;
  border: unset;
  color: var(--bh-black);
}

.home-hero-slider .form-sl .form-group-2 {
  display: flex;
  align-items: center;
  border: unset;
}

.home-hero-slider .form-sl .form-group-2 select {
  margin-right: 19px;
  padding-left: 44px;
  color: var(--bh-black);
}

.home-hero-slider .form-sl .form-group-2 span {
  left: 23px;
  z-index: 1;
}

.home-hero-slider .form-sl .form-group-1 span {
  left: 9px;
}

.home-hero-slider .list-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.home-hero-slider .list-category li {
  margin-right: 20px;
}

.home-hero-slider .list-category li a {
  display: inline !important;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--bh-secondary);
  background-repeat: no-repeat;
  background-position-y: 0px;
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
  background-size: 0 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.home-hero-slider .list-category li a::before {
  content: "# ";
}

.home-hero-slider .list-category li a:hover,
.home-hero-slider .list-category li.current a {
  background-size: 100% 100%;
  color: var(--bh-black);
}

.home-hero-slider .list-category.text-white li a,
.home-hero-slider .list-category.text-white li a:hover,
.home-hero-slider .list-category.text-white li.current a {
  color: var(--bh-white) !important;
}

@media (max-width: 1199px) {
  .home-hero-slider .heading h2 {
    padding-right: 100px;
  }

  .home-hero-slider .heading p {
    padding-right: 100px;
  }

  .home-hero-slider .form-sl .row-group-search {
    margin-right: 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .home-hero-slider .heading h2,
  .home-hero-slider .heading p {
    padding-right: 0;
  }

  .home-hero-slider .heading h2 {
    font-size: 30px;
  }

  .home-hero-slider .form-sl .row-group-search.home1 .form-group-1,
  .home-hero-slider .form-sl .row-group-search.home1 .form-group-2 {
    width: 100%;
  }

  .home-hero-slider .form-sl .row-group-search.home1 .form-group-1 {
    max-width: unset;
    padding: 0;
  }

  .home-hero-slider .form-sl .row-group-search.home1 .form-group-2 {
    margin-bottom: 15px;
  }

  .home-hero-slider .form-sl .row-group-search.home1 .form-group-1 input {
    padding-left: 0;
  }

  .home-hero-slider .form-sl .row-group-search.home1 .form-group-2 span {
    left: 0;
  }
}

@media (max-width: 767px) {
  .home-hero-main {
    padding-top: 160px;
    padding-bottom: 0px;
  }
}

/* Page: member login — Kakao official image button */
.member-kakao-login-btn {
  display: block;
  width: 100%;
  line-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
}

.member-kakao-login-btn img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

/* 광고/서비스 내역 — 전체 목록 검색 */
.mypage-service-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mypage-service-search .bh-form-control {
  flex: 1 1 200px;
  min-width: 0;
  max-width: 420px;
}

.mypage-service-search .mypage-link-action {
  align-self: center;
}

/* 광고/서비스 내역 — 결제·포인트 테이블 */
.mypage-service-table-wrap {
  width: 100%;
}

.mypage-service-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.mypage-service-table thead th {
  padding: 11px 14px;
  background: var(--bh-light);
  border-bottom: 1px solid var(--bh-lightgray);
  font-size: 13px;
  font-weight: 600;
  color: var(--bh-dark);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.mypage-service-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--bh-light);
  border-right: 1px solid var(--bh-light);
  text-align: center;
  vertical-align: middle;
  color: var(--bh-black);
  word-break: break-word;
}

.mypage-service-table tbody td:last-child {
  border-right: 0;
}

.mypage-service-table tbody tr:last-child td {
  border-bottom: 0;
}

.mypage-service-table tbody tr:hover {
  background: #f0f0f0;
}

.mypage-service-table__empty td {
  padding: 28px 16px !important;
  text-align: center !important;
  color: var(--bh-black-1st);
  font-size: 14px;
}

.mypage-service-table td.is-primary .mypage-service-table__value {
  font-weight: 600;
  color: var(--bh-dark);
}

/* 데스크톱: 넓은 표는 가로 스크롤 */
@media (min-width: 992px) {
  .mypage-service-table-wrap[data-drag-scroll="true"] {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    border-radius: 4px;
  }

  .mypage-service-table-wrap[data-drag-scroll="true"].is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .mypage-service-table--point,
  .mypage-service-table--ad {
    min-width: 720px;
  }

  .mypage-service-table--read {
    min-width: 560px;
  }
}

/* 모바일·태블릿: 카드형 목록 */
@media (max-width: 991px) {
  .mypage-service-table-wrap[data-drag-scroll="true"] {
    overflow: visible;
    cursor: default;
  }

  .mypage-service-table {
    border: 0;
    border-radius: 4px;
    background: transparent;
  }

  .mypage-service-table thead {
    display: none;
  }

  .mypage-service-table tbody {
    display: block;
  }

  .mypage-service-table tbody tr {
    display: block;
    margin: 0 0 12px;
    padding: 14px 16px;
    border: 1px solid var(--bh-light);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(18, 18, 18, 0.04);
  }

  .mypage-service-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .mypage-service-table tbody tr:hover {
    background: #fff;
    border-color: rgba(20, 160, 119, 0.35);
  }

  .mypage-service-table tbody td {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--bh-light);
    text-align: left;
    font-size: 14px;
    box-sizing: border-box;
  }

  .mypage-service-table tbody td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .mypage-service-table tbody td::before {
    content: attr(data-label);
    flex: 0 0 92px;
    width: 92px;
    max-width: 38%;
    font-size: 12px;
    font-weight: 600;
    color: var(--bh-black-1st);
    text-align: left;
    line-height: 1.45;
    padding: 1px 0;
  }

  .mypage-service-table__value {
    flex: 1 1 0;
    min-width: 0;
    text-align: right;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .mypage-service-table tbody td.is-primary {
    display: block;
    padding: 0 0 12px;
    margin: 0 0 4px;
    border-bottom: 1px solid var(--bh-lightgray);
  }

  .mypage-service-table tbody td.is-primary::before {
    display: none;
  }

  .mypage-service-table tbody td.is-primary .mypage-service-table__value {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--bh-dark);
  }

  .mypage-service-table__empty {
    margin: 0;
    border: 1px dashed var(--bh-lightgray);
    border-radius: 4px;
    background: #fafafa;
  }

  .mypage-service-table__empty td {
    display: block !important;
    border: 0 !important;
    padding: 24px 16px !important;
    text-align: center !important;
  }

  .mypage-service-table__empty td::before,
  .mypage-service-table__empty .mypage-service-table__value {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .mypage-service-table tbody tr {
    padding: 12px 14px;
  }

  .mypage-service-table tbody td::before {
    flex: 0 0 80px;
    width: 80px;
    font-size: 11px;
  }

  .mypage-service-table tbody td.is-primary .mypage-service-table__value {
    font-size: 16px;
  }
}

/* 개인회원 마이페이지 — 기업회원 UI 공유 */
.mypage-person-page .mypage-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mypage-person-page .mypage-applicant-title a {
  color: inherit;
  text-decoration: none;
}

.mypage-person-page .mypage-applicant-title a:hover {
  color: var(--bh-primary);
}

.mypage-person-page .mypage-applicant-head h3 a {
  color: inherit;
  text-decoration: none;
}

.mypage-person-page .mypage-applicant-head h3 a:hover {
  color: var(--bh-primary);
}

@media (max-width: 991px) {
  .mypage-person-page .mypage-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .mypage-person-page .mypage-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 헤더 계정 프로필 이미지 */
.header-account-profile-img,
.sticky-area-wrap .header-ct-right .account > img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center center;
  display: block;
  flex-shrink: 0;
}

/* 헤더 계정 드롭다운 — 회원 요약 */
.header-account-summary {
  margin: -8px -8px 12px;
  padding: 14px 12px 12px;
  border-radius: 4px;
  background: linear-gradient(160deg, #f5f5f5 0%, #fafafa 100%);
  border: 1px solid var(--bh-lightgray);
}

.header-account-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.header-account-summary__welcome {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: "Pretendard", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--bh-black);
}

.header-account-summary__welcome strong {
  font-weight: 700;
  color: var(--bh-dark);
}

.header-account-summary__badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 3px 8px;
  font-family: "Pretendard", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bh-secondary);
  background: var(--bh-white);
  border: 1px solid var(--bh-midgray);
  border-radius: 4px;
}

.header-account-summary__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.header-account-summary__stat {
  margin: 0;
}

.header-account-summary__stat-link {
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  color: inherit;
  background: var(--bh-white);
  border: 1px solid var(--bh-light);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-account-summary__stat-link:hover {
  border-color: var(--bh-midgray);
  box-shadow: 0 2px 8px rgba(18, 18, 18, 0.06);
}

.header-account-summary__stat-body {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.header-account-summary__stat-label {
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-secondary);
}

.header-account-summary__stat-value {
  font-family: "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--bh-black);
  white-space: nowrap;
}

.header-account-summary__stat-value strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--bh-dark);
  margin-right: 1px;
}

.sticky-area-wrap .header-ct-right .account .sub-account .header-account-summary + .sub-account-item {
  padding-top: 4px;
  margin-top: 0;
  border-top: none;
}

/* AI 채용 상담 — 말풍선: AI 왼쪽, 사용자 오른쪽 */
.flat-dashboard-messages .right .chat[data-chat="ai-counsel"] .bubble.me {
  float: right;
  color: inherit;
  background: var(--bh-light);
  align-self: flex-end;
  -webkit-animation-name: slideFromRight;
  animation-name: slideFromRight;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 0;
  max-width: 90%;
  width: fit-content;
}

.flat-dashboard-messages .right .chat[data-chat="ai-counsel"] .bubble.you {
  float: left;
  color: var(--bh-white);
  background-color: var(--bh-primary);
  align-self: flex-start;
  -webkit-animation-name: slideFromLeft;
  animation-name: slideFromLeft;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 18px;
  max-width: 90%;
  width: fit-content;
}

/* AI 채용 상담 — 헤더 로고 */
.ai-chat-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-right: 12px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--bh-light);
  padding: 4px;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .ai-chat-logo {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    padding: 3px;
  }
}

.flat-dashboard-messages .chat[data-chat="ai-counsel"] .bubble.you .aichat-login-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--bh-white);
  background: var(--bh-dark);
  border-radius: 4px;
}

.flat-dashboard-messages .chat[data-chat="ai-counsel"] .bubble.you .aichat-login-btn:hover {
  color: var(--bh-white);
  opacity: 0.9;
}

/* 헤더 — 받은쪽지 드롭다운 */
.sticky-area-wrap .header-ct-right .header-customize-item.bell {
  position: relative;
}

/* 테마 기본 녹색 점(::after) 제거 — 미읽음 수 배지만 표시 */
.sticky-area-wrap .header-ct-right .header-customize-item.bell::after {
  display: none;
  content: none;
}

.sticky-area-wrap .header-ct-right .header-bell-trigger {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
}

.sticky-area-wrap .header-ct-right .header-bell-trigger .icon-bell,
.sticky-area-wrap .header-ct-right .header-bell-trigger .header-bell-badge {
  grid-area: 1 / 1;
}

.sticky-area-wrap .header-ct-right .header-bell-trigger .icon-bell {
  position: static;
  display: block;
  width: 1em;
  height: 1em;
  font-size: 1em;
}

.sticky-area-wrap .header-ct-right .header-bell-trigger .header-bell-badge {
  position: static;
  z-index: 2;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  margin: 0;
  padding: 0 5px;
  border: none;
  border-radius: 999px;
  background: var(--bh-primary);
  color: var(--bh-white);
  font-family: "Pretendard", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
  transform: translate(42%, -42%);
  box-shadow: none;
}

.sticky-area-wrap .header-ct-right .bell .sub-notification-item--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.sticky-area-wrap .header-ct-right .bell .sub-notification-item--link:hover {
  background: rgba(20, 160, 119, 0.06);
}

.sticky-area-wrap .header-ct-right .bell .sub-notification-preview {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bh-black-2nd);
}

.sticky-area-wrap .header-ct-right .bell .sub-notification-empty {
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: var(--bh-black-2nd);
}

.sticky-area-wrap .header-ct-right .bell .sub-notification-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 버튼 전체 영역 클릭 가능 (a가 버튼 자체) */
.sticky-area-wrap .header-ct-right .bell a.sub-notification-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--bh-white);
  cursor: pointer;
}

.sticky-area-wrap .header-ct-right .bell a.sub-notification-button.is-secondary {
  background: var(--bh-white);
  border: 1px solid var(--bh-primary);
  color: var(--bh-primary);
}

.sticky-area-wrap .header-ct-right .bell a.sub-notification-button:hover {
  opacity: 0.92;
}

/* 기업 채용공고 목록 — 모바일 검색 접기 */
.recruit-search-section .recruit-search-toggle {
  display: none;
}

.recruit-search-section .recruit-search-panel {
  display: block;
}

@media (max-width: 991px) {
  .recruit-search-section {
    margin-bottom: 20px;
  }

  .recruit-search-section .recruit-search-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #121212;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  .recruit-search-section .recruit-search-toggle__main {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .recruit-search-section .recruit-search-toggle__label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
  }

  .recruit-search-section .recruit-search-toggle__count {
    overflow: hidden;
    color: #646464;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .recruit-search-section .recruit-search-toggle__summary {
    overflow: hidden;
    color: #646464;
    font-size: 13px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .recruit-search-section .recruit-search-toggle__icon {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .recruit-search-section.is-search-open .recruit-search-toggle__icon {
    transform: rotate(180deg);
  }

  .recruit-search-section .recruit-search-panel {
    display: none;
    margin-top: 12px;
  }

  .recruit-search-section.is-search-open .recruit-search-panel {
    display: block;
  }

  .recruit-search-section .job-search-form form {
    margin-top: 0;
  }

  .recruit-result-summary {
    display: none;
  }
}

/* 기업 채용공고 검색 — 지역/직군 레이어 팝업 */
.recruit-search-section .job-search-form.style2 .recruit-picker-field {
  position: relative;
}

.recruit-search-section .job-search-form.style2 .recruit-picker-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 30px 25px 0;
  border: 0;
  background: transparent;
  color: var(--bh-black-2nd);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  cursor: pointer;
}

.recruit-search-section .job-search-form.style2 .recruit-picker-trigger .recruit-picker-trigger__label {
  position: static;
  transform: none;
  z-index: auto;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0;
}

.recruit-search-section .job-search-form.style2 .recruit-picker-trigger.is-selected,
.recruit-search-section .job-search-form.style2 .recruit-picker-trigger.is-selected .recruit-picker-trigger__label {
  color: var(--bh-black);
}

.recruit-search-section .job-search-form.style2 .recruit-picker-field.location .recruit-picker-trigger {
  padding-left: 33px;
}

.recruit-search-section .job-search-form.style2 .recruit-picker-field.job .recruit-picker-trigger {
  padding-left: 16px;
}

.recruit-search-section .job-search-form.style2 .recruit-picker-field.location .icon-map-pin {
  pointer-events: none;
}

.recruit-search-section .job-search-form.style2 .recruit-picker-trigger::after {
  border-bottom: 8px solid var(--bh-black-2nd);
  border-right: 8px solid var(--bh-black-2nd);
  content: '';
  height: 13px;
  width: 13px;
  margin-top: -10px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: rotate(0deg);
  clip-path: polygon(45% 50%, 100% 50%, 50% 100%, 0% 50%);
}

@media only screen and (max-width: 1200px) {
  .recruit-search-section .job-search-form.style2 .recruit-picker-field.location .recruit-picker-trigger {
    padding-left: 42px;
  }

  .recruit-search-section .job-search-form.style2 .recruit-picker-field.job .recruit-picker-trigger {
    padding-left: 16px;
  }
}

/* 기업 채용공고 목록 — PC 검색바 항목 너비 */
@media (min-width: 992px) {
  .recruit-search-section .candidate-form.job-search-form .row-group-search {
    display: grid;
    grid-template-columns:
      minmax(128px, 1.05fr)
      minmax(96px, 0.78fr)
      minmax(148px, 1.28fr)
      minmax(84px, 0.62fr)
      minmax(96px, 0.72fr)
      minmax(84px, 0.62fr)
      minmax(188px, auto);
    align-items: stretch;
  }

  .recruit-search-section .job-search-form.style2 .form-group.location {
    margin: 0;
  }

  .recruit-search-section .job-search-form.style2 .form-group {
    min-width: 0;
  }

  .recruit-search-section .job-search-form.style2 .form-group .input-filter-search {
    width: 100%;
    padding: 20px 28px 20px 36px;
    font-size: 15px;
  }

  .recruit-search-section .job-search-form.style2 .recruit-picker-trigger {
    padding: 20px 30px 20px 0;
    font-size: 15px;
  }

  .recruit-search-section .recruit-search-extra-field {
    min-width: 0;
  }

  .recruit-search-section .recruit-search-extra-field select {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 72px;
    padding: 20px 28px 20px 14px;
    border: 0;
    background: transparent;
    color: var(--bh-black-2nd);
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--bh-black-2nd) 50%),
      linear-gradient(135deg, var(--bh-black-2nd) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
  }

  .recruit-search-section .recruit-search-actions {
    display: flex;
    gap: 8px;
    align-items: stretch;
    min-width: 188px;
    padding: 8px;
    border-right: 0 !important;
  }

  .recruit-search-section .recruit-search-actions .btn-reset {
    flex: 0 0 auto;
    min-width: 72px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #475569;
    white-space: nowrap;
  }

  .recruit-search-section .recruit-search-actions .btn-find {
    flex: 1 1 auto;
    width: auto;
    min-width: 96px;
    padding: 12px 18px;
    white-space: nowrap;
  }
}

body.recruit-filter-layer-open {
  overflow: hidden;
}

.recruit-filter-layer {
  position: fixed;
  inset: 0;
  z-index: 20050;
  display: none;
}

.recruit-filter-layer.is-open {
  display: block;
}

.recruit-filter-layer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.recruit-filter-layer__panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  max-height: min(78vh, 720px);
  background: var(--bh-white);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.18);
  transform: translateX(-50%);
  overflow: hidden;
}

.recruit-filter-layer__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bh-light);
  background: #fafafa;
}

.recruit-filter-layer__title {
  flex: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--bh-dark);
  text-align: center;
}

.recruit-filter-layer__back,
.recruit-filter-layer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--bh-black-1st);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.recruit-filter-layer__back {
  visibility: hidden;
  font-size: 28px;
}

.recruit-filter-layer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
  min-height: 0;
  border-bottom: 1px solid var(--bh-light);
}

.recruit-filter-layer__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--bh-light);
}

.recruit-filter-layer__col:last-child {
  border-right: 0;
}

.recruit-filter-layer__col-head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--bh-light);
  background: #f8faf9;
  color: var(--bh-primary);
  font-size: 13px;
  font-weight: 700;
}

.recruit-filter-layer__list {
  flex: 1;
  margin: 0;
  padding: 8px 0;
  overflow-y: auto;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}

.recruit-filter-layer__item {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  background: transparent;
  color: var(--bh-dark);
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.recruit-filter-layer__item:hover,
.recruit-filter-layer__item.is-active {
  background: rgba(20, 160, 119, 0.08);
  color: var(--bh-primary);
  font-weight: 600;
}

.recruit-filter-layer__empty {
  padding: 16px 14px;
  color: #8a8a8a;
  font-size: 13px;
}

.recruit-filter-layer__footer {
  display: flex;
  gap: 10px;
  padding: 12px 16px 16px;
}

.recruit-filter-layer__reset {
  flex: 1;
  min-height: 44px;
  border: 1px solid #d9dee3;
  border-radius: 4px;
  background: #fff;
  color: #4b5563;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.recruit-filter-layer__apply {
  flex: 1.4;
  min-height: 44px;
}

@media (min-width: 769px) {
  .recruit-filter-layer__panel {
    top: 50%;
    bottom: auto;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
  }
}

@media (max-width: 768px) {
  .recruit-filter-layer__cols {
    grid-template-columns: 1fr;
  }

  .recruit-filter-layer__cols[data-mobile-step="1"] .recruit-filter-layer__col[data-picker-col="2"],
  .recruit-filter-layer__cols[data-mobile-step="1"] .recruit-filter-layer__col[data-picker-col="3"],
  .recruit-filter-layer__cols[data-mobile-step="2"] .recruit-filter-layer__col[data-picker-col="1"],
  .recruit-filter-layer__cols[data-mobile-step="2"] .recruit-filter-layer__col[data-picker-col="3"],
  .recruit-filter-layer__cols[data-mobile-step="3"] .recruit-filter-layer__col[data-picker-col="1"],
  .recruit-filter-layer__cols[data-mobile-step="3"] .recruit-filter-layer__col[data-picker-col="2"] {
    display: none;
  }

  .recruit-filter-layer__col {
    border-right: 0;
    border-bottom: 0;
  }
}

/* /web 공통 페이징 — 모바일 5블록 / PC 10블록 */
.pagination-job-wrap {
  width: 100%;
}

.pagination-job-wrap .pagination-job-responsive {
  display: flex;
  justify-content: center;
}

.pagination-job-wrap .pagination-job-responsive--desktop {
  display: none;
}

.pagination-job-wrap .pagination-job li.disabled a {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.pagination-job-wrap .pagination-job-jump {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 992px) {
  .pagination-job-wrap .pagination-job-responsive--mobile {
    display: none;
  }

  .pagination-job-wrap .pagination-job-responsive--desktop {
    display: flex;
  }
}

/* 탑메뉴 활성 — 일반 메뉴 항목 글자색 (고객센터 외 메뉴) */
.header-default .header-ct-center #main-nav #menu-primary-menu > li.menu-item.current-item > a,
.header-default .header-ct-center #main-nav #menu-primary-menu > li.current-item > a {
  color: var(--bh-primary);
  font-weight: 500;
}

.header-default .header-ct-center #main-nav #menu-primary-menu > li.menu-item.current-item > a:hover,
.header-default .header-ct-center #main-nav #menu-primary-menu > li.current-item > a:hover {
  color: var(--bh-primary);
}

/* =========================================================
   Main Page (index.php)
   ========================================================= */

/* --- Hero / Search --- */
.home-hero-theme-white h1.text-dark,
.home-hero-theme-white p.text-dark,
.home-hero-theme-white .heading .text-dark a,
.home-hero-theme-white .heading .text-dark strong {
  color: var(--bh-dark) !important;
}

.home-hero-theme-black h1.text-white,
.home-hero-theme-black p.text-white,
.home-hero-theme-black .heading .text-white a,
.home-hero-theme-black .heading .text-white strong {
  color: var(--bh-white) !important;
}

.home-hero-theme-white .heading .text-dark a,
.home-hero-theme-black .heading .text-white a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-hero-theme-white .list-category.text-dark li a,
.home-hero-theme-white .list-category.text-dark li a:hover,
.home-hero-theme-white .list-category.text-dark li.current a {
  color: var(--bh-dark) !important;
}

.home-hero-theme-black .list-category.text-white li a,
.home-hero-theme-black .list-category.text-white li a:hover,
.home-hero-theme-black .list-category.text-white li.current a {
  color: var(--bh-white) !important;
}

/* Main home header — white theme */
#header.style-absolute.header-hero-theme-white .sticky-area-wrap .header-ct-left .categories > a span,
#header.style-absolute.header-hero-theme-white .sticky-area-wrap .header-ct-left .categories > a,
#header.style-absolute.header-hero-theme-white #main-nav #menu-primary-menu > li > a,
#header.style-absolute.header-hero-theme-white .sticky-area-wrap .header-ct-right .help a,
#header.style-absolute.header-hero-theme-white .sticky-area-wrap .header-ct-right .bell,
#header.style-absolute.header-hero-theme-white .sticky-area-wrap .header-ct-right .account .name,
#header.style-absolute.header-hero-theme-white .sticky-area-wrap .header-ct-right .button a {
  color: var(--bh-black);
}

#header.style-absolute.header-hero-theme-white #main-nav #menu-primary-menu li a::after {
  background: var(--bh-black);
}

#header.style-absolute.header-hero-theme-white {
  border-bottom-color: rgba(18, 18, 18, 0.12);
}

#header.style-absolute.header-hero-theme-white.is-fixed .sticky-area-wrap .header-ct-left .categories > a span,
#header.style-absolute.header-hero-theme-white.is-fixed .sticky-area-wrap .header-ct-left .categories > a,
#header.style-absolute.header-hero-theme-white.is-fixed #main-nav #menu-primary-menu > li > a,
#header.style-absolute.header-hero-theme-white.is-fixed .sticky-area-wrap .header-ct-right .help a,
#header.style-absolute.header-hero-theme-white.is-fixed .sticky-area-wrap .header-ct-right .bell,
#header.style-absolute.header-hero-theme-white.is-fixed .sticky-area-wrap .header-ct-right .account .name,
#header.style-absolute.header-hero-theme-white.is-fixed .sticky-area-wrap .header-ct-right .button a,
#header.style-absolute.header-hero-theme-white.is-small .sticky-area-wrap .header-ct-left .categories > a span,
#header.style-absolute.header-hero-theme-white.is-small .sticky-area-wrap .header-ct-left .categories > a,
#header.style-absolute.header-hero-theme-white.is-small #main-nav #menu-primary-menu > li > a,
#header.style-absolute.header-hero-theme-white.is-small .sticky-area-wrap .header-ct-right .help a,
#header.style-absolute.header-hero-theme-white.is-small .sticky-area-wrap .header-ct-right .bell,
#header.style-absolute.header-hero-theme-white.is-small .sticky-area-wrap .header-ct-right .account .name,
#header.style-absolute.header-hero-theme-white.is-small .sticky-area-wrap .header-ct-right .button a {
  color: var(--bh-black);
}

#header.style-absolute.header-hero-theme-white .nav-filter .nav-mobile::before,
#header.style-absolute.header-hero-theme-white .nav-filter .nav-mobile::after,
#header.style-absolute.header-hero-theme-white .nav-filter .nav-mobile span {
  background-color: var(--bh-black);
}

.home-hero-main .form-sl {
  max-width: 800px;
}

/* --- Partner logo marquee (CSS, Swiper JS 미사용) --- */
.partner-marquee {
  overflow: hidden;
  width: 100%;
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  animation: main-partner-scroll 40s linear infinite;
  will-change: transform;
}

.partner-marquee-set {
  display: flex;
  flex-shrink: 0;
}

.partner-marquee-item {
  flex-shrink: 0;
  margin-right: 50px;
}

.partner-marquee-item .logo-partner img {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
}

.partner-type-6 .swiper-wrapper,
.partner-marquee .swiper-wrapper {
  display: flex;
  animation: main-partner-scroll 40s linear infinite;
}

.partner-type-6 .swiper-slide {
  flex-shrink: 0;
  margin-right: 50px !important;
  width: auto !important;
}

.partner-type-6 .swiper-pagination {
  position: absolute;
  bottom: 10px !important;
}

@keyframes main-partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-type-6 .swiper-wrapper,
.partner-type-6 .swiper-slide,
.partner-marquee-item,
.partner-type-6 .logo-partner,
.partner-type-6 .logo-partner img,
.partner-marquee .logo-partner,
.partner-marquee .logo-partner img {
  cursor: default !important;
}

/* --- Main layer popup --- */
#main_popup_20260304 {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(230px);
  z-index: 9999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
  width: 90vw;
  max-width: 400px;
}

@media (max-width: 767px) {
  #main_popup_20260304 {
    left: 50%;
    transform: translateX(-50%);
  }
}

#main_popup_20260304 img {
  display: block;
  width: 100%;
}

.main-popup-footer {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  font-size: 12px;
}

.main-popup-footer label {
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
}

.main-popup-footer input[type="checkbox"] {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.main-popup-close {
  color: #fff;
  text-decoration: none;
}

/* --- Section titles --- */
.main-page .job-category-section .tf-title,
.main-page .jobs-section-three .tf-title {
  justify-content: flex-start;
  align-items: center;
}

.main-page .job-category-section .tf-title > .group-title,
.main-page .jobs-section-three .tf-title > .group-title {
  flex: unset;
}

/* --- Why choose section --- */
.home-why-choose-section {
  position: relative;
  background: #f0f0f0;
  overflow: hidden;
  padding: 50px 0;
}

.home-why-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.home-why-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e3e5e8;
  color: var(--bh-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-why-head h1 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.3;
  color: var(--bh-black);
}

.home-why-head p {
  margin: 0;
  color: var(--bh-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.home-feature-card {
  position: relative;
  height: 100%;
}

.home-feature-card .tf-iconbox.style-3 {
  height: 100%;
  margin: 0;
  padding: 34px 28px 30px;
  border: 1px solid #e3e5e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-feature-card .tf-iconbox.style-3:hover {
  transform: translateY(-4px);
  border-color: var(--bh-primary);
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.08);
}

.home-feature-num {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: #eceef1;
}

.home-feature-card .icon.bg-white {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: #f3f4f6;
  border: 1px solid #e8eaed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-feature-card .icon.bg-white img {
  display: block;
}

.home-feature-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e8eaed;
  color: var(--bh-primary);
  font-size: 12px;
  font-weight: 700;
}

.home-feature-card .box-content .box-title {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--bh-black);
}

.home-feature-card .box-content p {
  min-height: 72px;
  margin-bottom: 18px;
  text-transform: none;
  line-height: 1.65;
  color: var(--bh-secondary);
}

.home-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bh-primary);
  font-size: 15px;
  font-weight: 700;
}

.home-feature-link:hover {
  color: #0f8562;
}

.home-why-stats {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.home-why-stat-item {
  height: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e3e5e8;
  text-align: center;
  box-shadow: 0 6px 20px rgba(18, 18, 18, 0.03);
}

.home-why-stat-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.2;
  color: var(--bh-primary);
}

.home-why-stat-item span {
  color: var(--bh-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.home-why-cta {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 991px) {
  .home-why-choose-section {
    padding: 64px 0 72px;
  }

  .home-why-head h1 {
    font-size: 28px;
  }

  .home-feature-card .box-content p {
    min-height: 0;
  }
}