/* =========================================================
  공고보기 | 필터 설정하기 팝업
  ========================================================= */
.pop-dimmed {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.pop-dimmed.is-open {
  display: block;
}
.pop-con-inner {
  display: flex;
  align-items: center;
  justify-content: center;  
  height: 100vh;
  padding: 0 40px;
}
.pop-cont {
  position: relative;  
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
}
.pop-cont-lg {
  width: 800px;
}
.pop-cont-md {
  width: 560px;
}
.pop-cont-sm {
  width: 400px;
}

.pop-header {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line-gray1);
}

.pop-header-filter {
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line-gray1);
  text-align: center;  
}

/* .pop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line-gray1);
} */
.pop-title {
  font-size: 2.2rem;
  font-weight: 600;
}
.btn-pop-close {
  position: absolute;  
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  /* background: none;
  border: none;
  cursor: pointer; */
}
.btn-pop-close::before,
.btn-pop-close::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 4px;
  width: 20px;
  height: 2px;
  background-color: var(--gray-700);
}
.btn-pop-close::before { 
  transform: rotate(45deg); 
}
.btn-pop-close::after { 
  transform: rotate(-45deg); 
}
.pop-body {
  display: flex;
  overflow: hidden;
}
.pop-body-filter {
  height: 392px;
}
.pop-filter-aside {
  flex-shrink: 0;
  width: 180px;
  padding: 16px;
  border-right: 1px solid var(--line-gray1);
  overflow-y: auto;
}
.pop-tab-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pop-tab-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 12px 16px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}
.pop-tab-item.active {
  background-color: var(--primary-100); 
}
.pop-tab-item:hover {
  background-color: var(--primary-100); 
}
.filter-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-badge {
  color: var(--primary-700);
  font-size: 1.4rem;
  font-weight: 500;
}
.btn-filter-reset {
  display: none;
  width: 24px;
  height: 24px;
  background: url(/images/common/ico-reset-pink.png) no-repeat left top/100%;
}
.pop-tab-item:hover {
  padding: 12px 10px 12px 10px;
}
.pop-tab-item:hover .btn-filter-reset {
  display: block;
}
.pop-filter-content {
  flex: 1;
  background-color: #F9F9FD;
}
.pop-panel-content {
  display: none; 
  padding: 16px;
  /* overflow-y: auto; */
}
.pop-panel-content.active {
  display: block; 
}
.panel-section-title {
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: 600;
}
/* 필터 - 경력 */
.career-range-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 248px;
  margin-top: 4px;
  padding: 20px 0;
  background-color: var(--white);
}
.slider-mock-wrap {
  width: 344px;
  padding: 0 10px;
}
.slider-track {
  height: 4px;
  background-color: #e9ecef;
  border-radius: 2px;
  position: relative;
}
.value-display {
  color: var(--primary-700); 
  font-size: 1.6rem;  
  text-align: right;
}
.value-display b {
  font-weight: 700;
}
.slider-wrapper {
  position: relative;
}
/* 기본 range 슬라이더 바 기본 상태 */
.range-slider {
  width: 100%;
  height: 3px;
  background: var(--line-gray1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;  
}
/* 슬라이더 손잡이 (Chrome/Safari/Edge) */
.range-slider::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white); 
  border: 6px solid var(--primary-700);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;  
  transition: transform 0.1s ease;
}
.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
/* 슬라이더 손잡이 (Firefox) */
.range-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7B00FF;
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.label-container {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--gray-600);  
  font-size: 1.2rem;
}
.label-container b {
  color: var(--gray-800);
  font-weight: 700;
}
.career-direct-input {
  width: 100px;
}
.input-inline-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.input-year {
  width: 78px;
  height: 40px;
  padding: 0 10px;
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 1.4rem;
}
.input-year::placeholder {
  color: var(--gray-500);
}
.input-year:focus {
  border: 1px solid var(--gray-200);
}
.unit-text {
  font-weight: 500;
}
/* .input-guide-text {
  position: relative;
  padding-left: 14px;
  margin-top: 10px;
  color: var(--gray-500);  
  font-size: 1.2rem;
  line-height: 1.2;
}
.input-guide-text:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  background: url(/images/common/ico-info.svg) no-repeat left top/100%;
} */
.pop-footer {
  height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f3f5;
  background-color: #ffffff;
}

/* 필터 - 직무 */
.pop-panel-content.pop-panel-job {
  height: 100%;
  padding: 0;
  background-color: var(--white);
}
.job-category {
  display: flex;
}
.job-category>div {
  flex: 1;
}
.category-depth1-wrap {
  overflow-x: hidden;
  overflow-y: auto;
  height: 392px;
}
.category-depth1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}
.category-depth1-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  cursor: pointer;
}
.category-depth1-item.active {
  background-color: var(--primary-100);
}
.count-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-depth1-item:hover {
  background-color: var(--primary-100);
}
.category-depth1-item:hover .btn-filter-reset {
  display: block;
}
.category-depth2 {
  height: 392px;
  padding: 16px;
  background-color: #F9F9FD;
  border-left: 1px solid var(--line-gray1);
  overflow-x: hidden;
  overflow-y: auto;
}
.category-path-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.category-depth2-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}
.category-tag-area {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.category-depth2-tag {
  padding: 12px 16px;
  background-color: var(--white);
  border: 1px solid var(--line-gray1);
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 500;
}
.category-depth2-tag.active {
  background-color: var(--gray-700);
  border-color: var(--gray-700);
  color: var(--white);
}


/* 필터 - 업종 이하 */
.industry-group,
.employment-group, 
.scale-group,
.location-group,
.education-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.btn-filter-tag {
  padding: 12px 16px;
  background-color: var(--white);
  border: 1px solid var(--line-gray1);
  border-radius: 999px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 500;  
}
.btn-filter-tag.active {
  background-color: var(--gray-700);
  border-color: var(--gray-700);
  color: var(--white);
}
.point-tag {
  color: var(--primary-600);
}

/* =========================================================
  공고보기 | 공고 상세보기 팝업
  ========================================================= */





#jobListBody.no-scroll {
overflow: hidden !important;
  height: 100vh !important;
  position: fixed !important; /* 모바일 Safari 스크롤 완벽 차단 */
  width: 100% !important;
}


.pop-full-screen {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;  
}
#popJobDatail.is-active .pop-full-screen {
  visibility: visible;
  opacity: 1;
}


.full-screen-scroll {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-color: #ffffff;
  z-index: 2; 
  /* overflow: 0; */
  transition: all 0.4s;  
  transform: translateY(100%);
}
#popJobDatail.is-active .full-screen-scroll {
  opacity: 1;
  transform: translateY(0);
}






.pop-full-dimmed {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

#popJobDatail.is-active .pop-full-dimmed {
  visibility: visible;
  opacity: 1;
} 

.pop-full-close .btn-pop-close {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s 0.4s;
}
#popJobDatail.is-active .pop-full-close .btn-pop-close {
  visibility: visible;
  opacity: 1;
}
.pop-inner {
  width: 100%;
  max-width: 1476px;
  margin: 0 auto;
  padding: 0 40px;
}
.pop-full-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  height: 92px;
  background-color: var(--white);
  z-index: 50;
}
.detail-job-tit {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 240px);
}
.detail-company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 120px;
  height: 60px;
  padding: 7px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
}
.detail-company-logo img {
  object-fit: contain;
  width: 100%;
}
.detail-company-tit {
  width: calc(100% - 140px);
}
.detail-company-nm {
  font-size: 1.5rem;
  font-weight: 600;
}
.detail-nm-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-recruit-nm {
  margin-top: 6px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}
.pop-actions {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.detail-job-body {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.detail-job-cont {
  width: calc(100% - 357px)
}
.detail-job-side {
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 132px;
  width: 325px;
}
.anchor-tab-wrap {
  position: sticky;
  top: 92px;
  z-index: 100;
}
.anchor-tab {
  display: flex;
  align-items: center;
  /* position: sticky;
  top: 92px; */
  padding-top: 40px;
  background-color: var(--white);
}
.anchor-tab .anchor-tab-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 54px;
  border-top: 1px solid var(--line-gray1);
  border-bottom: 1px solid var(--line-gray1);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.1s ;
}
.anchor-tab .anchor-tab-item.active {
  border-top: 4px solid var(--primary-700);
  border-bottom: 4px solid var(--primary-700);
}
.anchor-tab-cont {
  padding: 40px 0;
}
.cont-tit {
  font-size: 2.4rem;
  font-weight: 600;
}

.com-info-cont {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.sub-tit {
  position: relative;
  padding-left: 22px;
  font-size: 2rem;
  font-weight: 600;
}
.sub-tit::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 1px;
  width: 16px;
  height: 16px;
  background: url(/images/pages/ico-circle-purple.svg) no-repeat left top/100%;
}
.com-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.com-info-row {
  display: flex;
  gap: 10px;
}
.com-info-label {
  flex-shrink: 0;
  min-width: 47px;
  color: var(--gray-500);
  font-size: 1.4rem;
  line-height: 1.6;
}
.com-info-value,
.com-info-value a {
  color: var(--gray-700);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}



.com-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}
.com-stat-card {
  position: relative;
  padding: 100px 20px 32px 20px; 
  background-color: var(--gray-50);
  border: 1px solid var(--line-gray1);
  border-radius: 4px;
  text-align: center; 
}
.com-stat-card::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 58px;
  height: 48px;
}
.com-stat-card:nth-child(1)::before {
  background: url(/images/pages/ico-info1.png) no-repeat left top/100%;
}
.com-stat-card:nth-child(2)::before {
  background: url(/images/pages/ico-info2.png) no-repeat left top/100%;
}
.com-stat-card:nth-child(3)::before {
  background: url(/images/pages/ico-info3.png) no-repeat left top/100%;
}
.com-stat-card:nth-child(4)::before {
  background: url(/images/pages/ico-info4.png) no-repeat left top/100%;
}
.com-stat-card:nth-child(5)::before {
  background: url(/images/pages/ico-info5.png) no-repeat left top/100%;
}

.com-stat-label {
  margin-bottom: 8px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 400;
}

.com-stat-value {
  margin-top: 8px;
  color: var(--gray-700);
  font-size: 1.8rem;
  font-weight: 700;
}


.spec-donut-list {
  display: flex;
  gap: 3.2%;
  margin-top: 16px;
}
.spec-donut-item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 20px 12px;
  border: 1px solid var(--gray-100);
}
.chart-group {
  display: flex;
  flex-direction: column;
  align-items: center;  
  width: 100%;
}  

/* 도넛 차트 본체 영역 크기를 강제로 통일 */
.dunut-chart-wrapper {
  position: relative;
  width: 90%;
  aspect-ratio: 1 / 1; /* 👈 이 높이에 맞춰 4개 도넛 크기가 칼같이 고정됩니다 */
  flex-shrink: 0;
  margin-bottom: 20px;
  /* padding: 0 20px; */
}

/* 스크립트로 자동 생성될 커스텀 범례 스타일 */
.custom-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 12px; /* 라벨 사이의 간격 */
  padding: 0 8px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-size: 1.2rem;
  color: var(--gray-600);
  /* line-height: 1.5; */
}

.legend-color {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}







.spec-stats {
  display: flex;
  flex-direction: column;
  gap: 6px;  
  width: 100%;
  margin-top: 30px;
  /* padding: 0 20px; */
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
}

/* 타이틀 (최대, 최소 등) */
.stat-title {
  width: 40px;
  color: var(--gray-600);
  font-weight: 500;
}

/* 배경 바 */
.stat-bar-bg {
  flex: 1;
  position: relative;  
  height: 4px;
  background-color: var(--gray-100);
  overflow: hidden;
}
.average .stat-bar-bg {
  background-color: rgba(72, 111, 249, 0.10);
}
.mine .stat-bar-bg {
  background-color: rgba(255, 82, 82, 0.10);
}

/* 실제 데이터 게이지 바 */
.stat-bar-fill {
  width: var(--bar-width, 0%);
  height: 100%;
  transition: width 0.3s ease;
}

/* 각 항목별 색상 지정 */
.stat-row.default .stat-bar-fill { 
  background-color: var(--gray-500); 
} 
.stat-row.average .stat-bar-fill { 
  background-color: var(--em-text-blue); 
} 
.stat-row.mine .stat-bar-fill { 
  background-color: var(--em-text-red); 
}    

/* 우측 스코어 텍스트 */
.stat-value {
  width: 46px;
  text-align: right;
  font-weight: 600;
  color: #4b5563;
}

/* 평균과 본인 텍스트 색상 매칭 */
.stat-row.average .stat-value { 
  color: var(--em-text-blue); 
}
.stat-row.mine .stat-value { 
  color: var(--em-text-red); 
}








/* 바 차트 카드 그리드 (도넛 리스트 하단에 배치한다고 가정) */
.spec-bar-list {
  display: flex;
  gap: 3.2%;
  width: 100%;
  margin-top: 3.2%;
}



.spec-bar-item {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.spec-bar-title {
  font-family: 'Pretendard';
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0 0 20px 0;
}

/* 🎯 차트가 찌그러지지 않도록 가로세로 비율 유지 박스 설정 */
.bar-chart-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.8; 
  margin-top: 20px;
  flex-shrink: 0;
}

/* 🎯 이 부분을 추가해 주세요! */
.bar-chart-wrapper canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* 하단 수치 요약 레이아웃 */
.bar-summary-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.summary-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.bar-summary-container .summary-box:first-child {
  border-right: 1px solid var(--line-gray1);
}
.summary-label {
  font-size: 1.2rem;
  color: var(--gray-600);
}
.summary-value {
  font-size: 3.2rem;
  font-weight: 700;
}
.summary-value.blue { 
  color: var(--em-text-blue); 
}
.summary-value.red { 
  color: var(--em-text-red); 
}
.summary-value.pink { 
  color: rgba(255, 82, 82, 0.30); 
}
/* 기본 폰트 및 스타일 초기화 */
.spec-table-container {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.spec-table-box {
  flex: 1;
  width: 50%;
}
.spec-table-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: var(--gray-600);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
}
.spec-table-school .spec-table-header {
  border-right: 1px solid var(--gray-700);
}
.spec-table-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px; 
  border-bottom: 1px solid var(--line-gray1);
}
.subject {
  padding-left: 30px;
  font-size: 1.4rem;
  color: var(--gray-600);
  font-weight: 400;
}
.subject .num {
  font-weight: 600; 
  margin-right: 6px;
  display: inline-block;
}
.spec-table-item .value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; 
  height: 100%;
  background-color: var(--gray-50); 
  color: var(--em-text-blue);
  font-size: 1.4rem;
  font-weight: 600;
}
.spec-table-school .spec-table-item .value {
  border-right: 1px solid var(--gray-200);
}
.basic-desc {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}


/* news slide */
.news-slider-container {
  position: relative;
  width: 100%;
  padding: 0 34px; 
}
.news-swiper {
  width: 100%;
  height: auto;
}
.news-card {
  min-height: 162px;   
  padding: 20px;  
  background: var(--white);  
  border: 1px solid var(--line-gray1);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  border-color: var(--primary-400);
  box-shadow: 0 10px 20px 0 rgba(54, 43, 71, 0.12);
}
.news-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.favicon-mock {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.favicon-mock img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.domain-name {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-600);
}
.news-card-title {
  width: 100%;
  margin-top: 32px;
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}
.news-card-desc {
  margin-top: 16px;
  color: var(--gray-600);  
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-nav-prev,
.news-nav-next {
  display: flex;
  align-items: center;
  justify-content: center;  
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--white);  
  border-radius: 50%;
  border: 1px solid var(--line-gray1);
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s;
}
.news-nav-prev:hover,
.news-nav-next:hover {
  background-color: var(--gray-600);
  border-color: var(--gray-600);
}
.news-nav-prev::after,
.news-nav-next::after {
  content: '';
  display: inline-block;  
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--gray-700);
  border-right: 1.5px solid var(--gray-700);
}
.news-nav-prev:hover::after,
.news-nav-next:hover::after {
  border-color: var(--white);
}
.news-nav-prev { 
  left: 0; 
}
.news-nav-prev::after { 
  transform: rotate(-135deg); 
  margin-left: 2px; 
} 
.news-nav-next { 
  right: 0; 
}
.news-nav-next::after { 
  transform: rotate(45deg); 
  margin-right: 2px; 
}  
.news-nav-prev.swiper-button-disabled,
.news-nav-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* 기업 분석자료집 */
.com-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.btn-subtext {
  color: var(--primary-200);
  font-size: 1.4rem;
  font-weight: 400;
}
.btn-boldtext {
  position: relative;
  margin-left: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}
.btn-boldtext:before {
  content: '';
  position: absolute;
  top: 2px;
  left: -10px;
  width: 1px;
  height: 10px;
  background-color: var(--white);
}
.com-report-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.com-report-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 6px 20px;
  border: 1px solid var(--line-gray1);
  border-radius: 4px;
  background: var(--white);
}
.com-report-item:hover {
  border-color: var(--primary-400);
}
.com-report-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  min-width: 38px;
  color: var(--gray-700);
  font-size: 1.5rem;
  font-weight: 700;
}
.com-report-main {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 10px;
}
.com-report-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 120px;
  flex-shrink: 0;
  height: 60px;
  overflow: hidden;
  padding: 10px;
  border-radius: 4px;
  background: var(--white);
}
.com-report-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.com-report-text {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-left: 12px;
  border-left: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 1.5rem;
  line-height: 1.5;
}
.com-report-text strong {
  font-weight: 600;
}
.com-report-text span {
  color: var(--gray-600); 
  font-weight: 500;
}
.com-report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  height: 33px;
  padding: 12px 15px;
  border-radius: 4px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.3rem;
  font-weight: 600;
}
.com-report-badge.is-open {
  background: var(--primary-100);
  color: var(--primary-700);
}

/* AI기업리뷰 */
.is-open .pop-dimmed {
  display: block;
}
.review-info {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  margin-top: 10px;
}
.review-info-text {
  background: url(/images/common/ico-info.svg) no-repeat left 2px/12px;
  padding-left: 16px;
  color: var(--gray-500);
  font-size: 1.4rem;
}
.review-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}
.review-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.review-face {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}
.review-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-text {
  color: var(--gray-700);
}
.review-tit {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.review-desc {
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.6px;
}
.job-original {
  margin-top: 34px;
  padding: 20px;
  border: 1px solid var(--line-gray1);
  text-align: center;
}
.job-original img {
  width: 80%;
  margin: 0 auto;
}
.side-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.side-job-wrap {
  height: calc(100vh - 264px);
  overflow-x: hidden;
  overflow-y: auto;
}
.side-job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 0 1px 30px 1px;
}
.side-job-list-item {
  position: relative;
}
.side-job-list-item::before {
  content: '';
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-bottom-left.png) no-repeat left top/100%;
  opacity: 0;
  z-index: 50;
  transition: opacity 0.3s;    
}
.side-job-list-item::after {
  content: '';
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-bottom-right.png) no-repeat left top/100%;
  opacity: 0;
  transition: opacity 0.3s;   
}
.side-job-card {
  position: relative;
  padding: 16px;
  background: #F9F9FD;
  border: 1px solid #DEDEED;
  border-radius: 8px;
  cursor: pointer;
}
.side-job-list-item:hover::before,
.side-job-list-item:hover::after {
  opacity: 1;
}
.side-job-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-top-left.png) no-repeat left top/100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.side-job-card::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 22px;
  height: 22px;
  background: url(/images/common/border-top-right.png) no-repeat left top/100%;
  opacity: 0;
  transition: opacity 0.3s;  
}
.side-job-list-item:hover .side-job-card::before,
.side-job-list-item:hover .side-job-card::after {
  opacity: 1;
}
.side-job-card .job-company-nm {
  font-size: 1.4rem;
  font-weight: 500;
}
.side-job-card .job-card-tit {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}
.side-job-card .job-company-con {
  margin-top: 20px;
}
.side-job-card .job-footer-tags {
  margin-top: 20px;
}

/* AI 멘토 */
.job-clvr-position {
  position: relative;
  /* height: calc( 100vh - 317px );
  min-height: 620px;
  max-height: 740px;
  margin-top: 62px;
  padding-bottom: 60px;
  background: url(/images/clvr/bg-gradation-bottom.png) no-repeat center bottom / 100%;
  overflow-x: hidden;
  overflow-y: auto;   */
}
.btn-mob-clvr-colse {
  display: none;
}
.job-clvr-wrap {
  position: relative;
  height: calc( 100vh - 317px );
  min-height: 740px;
  max-height: 740px;
  margin-top: 62px;
  padding-bottom: 60px;
  background: url(/images/clvr/bg-gradation-bottom.png) no-repeat center bottom / 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.job-clvr-mob {
  display: none;
}
.job-clvr-position .clvr-search-wrap {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  width: 100%;
}

.clvr-stage-chatview .job-clvr-wrap {
  background: none;
}
.job-clvr-wrap .ai-careermento-stage {
  display: block;
  text-align: center;
}
.job-clvr-wrap .clvr-chatview-container {
  padding-bottom: 120px;
}
.job-clvr-wrap .chatview-head {
  position: relative;
  top: 0;
  padding-top: 0;
  background: none;
}
.job-clvr-wrap .chatview-head-mento {
  display: flex;
}
.job-clvr-container .clvr-stage-chatview .clvr-search-wrap.fixed-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
} 
.clvr-stage-chatview .clvr-search-info {
  text-align: center;
}






/* =========================================================
  공고보기 | 리뷰등록 및 수정요청 팝업
  ========================================================= */
.pop-body-review {
  padding: 0 30px;
}


/* 탭 스타일 */
.tab-menu {
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
}
.tab-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  height: 48px;
  cursor: pointer; 
}
.tab-menu li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--line-gray1);
}
.tab-menu li.active::after {
  height: 4px;
  background-color: var(--gray-600);
}
.tab-conts .tab-cont {
  display: none;
}
.tab-conts .tab-cont.active {
  display: block;
}
.review-cont {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
}
.info-box-purple {
  margin-top: 16px;
  padding: 10px 0;
  background-color: var(--primary-100);
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
.form-input-label {
  /* display: flex;
  align-items: center; */
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
  color: var(--gray-600);
  font-size: 1.4rem;
  font-weight: 600;
}
.required {
  position: relative;
}
.required::after {
  content: '*';
  position: absolute;
  top: -3px; 
  right: -15px;
  color: var(--em-text-red);
  font-size: 2.5rem;
  font-weight: 300;
}


/* =========================================================
  워크스페이스 | 알림 설정 팝업
  ========================================================= */
.pop-body-noti {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 30px 40px;
}  
.detail-info {
  position: relative;
  margin-top: 11px;
  padding-left: 14px;
  color: var(--gray-500);
  font-size: 1.2rem;
}
.detail-info::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  background: url(/images/common/ico-info-gray.svg) no-repeat center center/100%;
}
.noti-chk-row {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 16px 0;
  border-bottom: 1px solid var(--line-gray1);
}
.noti-chk-row:first-child {
  padding-top: 10px;
}
.noti-chk-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.noti-chk-tit {
  font-size: 1.4rem;
  font-weight: 600;
}







/* responsive */
@media (max-width: 1539px) {
  /* 공고 상세보기 팝업 */
  .pop-full-header {
    padding-right: 20px;
  }
  .pop-full-close {
    right: 10px;
  }

}

@media (max-width: 1279px) {
  /* 공고 상세보기 팝업 */
  .com-stat-grid {
    gap: 20px;
  }
  .com-stat-value {
    line-height: 1.3;
    word-break: keep-all;
  }
  .spec-donut-list {
    flex-wrap: wrap;
    gap: 6%;
  }
  .spec-donut-item {
    flex: auto;
    width: 47%;
    margin-bottom: 30px;
    padding: 20px 25px;
  }
  .spec-bar-list {
    flex-wrap: wrap;
    gap: 6%;
  }
  .spec-bar-item {
    flex: auto;
    width: 47%;
    margin-bottom: 30px;
    padding: 20px 25px;
  }
}

@media (max-width: 1079px) {
  /* 공고 상세보기 팝업 */
  .btn-apply-row {
    display: none;
    /* position: fixed;
    bottom: 50px;
    left: 50%;
    width: 325px;
    z-index: 100;
    transform: translateX(-50%); */
  }
  .pop-full-close {
    top: 10px;
    right: 20px;
  }  
  .detail-job-side {
    width: 0;
    /* opacity: 0; */
  }
  .side-list-head,
  .side-job-wrap {
    display: none;
  }
  .detail-job-cont {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  /* 필터 설정 팝업 */
  .pop-tab-item:hover .btn-filter-reset {
    display: none;
  }
  .btn-filter-reset {
    display: none;
  }  
}

@media (max-width: 959px) {
  /* 필터 설정 팝업 */
  .pop-cont-lg {
    width: 100%;
  }
  .career-range-box {
    gap: 20px;
  }

  /* 공고 상세보기 팝업 */
  .pop-full-header {
    flex-direction: column;
    align-items: start;
    height: fit-content;
    gap: 20px;
    padding-top: 16px;
  }
  .pop-actions {
    align-self: flex-end;
  }
  .detail-job-tit {
    width: 100%;
  }

  /* 공고 상세보기 페이지 AI 멘토 클레버 */
  .job-clvr-wrap {
    position: relative;
    background: url(/images/clvr/bg-gradation-bottom.png) no-repeat center bottom / 200%;
  }
  .job-clvr-wrap .clvr-search-wrap {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
  }
  .job-clvr-position {
    display: none;
  }
  .job-clvr-mob {
    display: block;
  } 
  .job-clvr-mob-inner {
    margin-top: 40px;
    padding: 30px 20px;
    background-color: var(--gray-50);
    border-radius: 8px;
    text-align: center;
    line-height: 1.6;
  }
  .clvr-mento-desc1 {
    font-size: 2.2rem;
    font-weight: 600;
  }
  .clvr-mento-desc2 {
    margin-top: 20px;
    color: var(--gray-700);
    font-size: 1.6rem;
    word-break: keep-all;
  }
  .btn-pop-clvr-row {
    margin-top: 40px;
  }
  .btn-pop-clvr {
    height: 50px;
    padding: 0 20px;
    background-color: var(--white);
    border: 1px solid var(--primary-200);
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .btn-pop-clvr:hover {
    background-color: var(--primary-100);
  }
  .btn-pop-clvr span {
    position: relative;
    padding-left: 26px;
  }
  .btn-pop-clvr span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: url(/images/clvr/ico-wheel.svg) no-repeat center center/100%;
  }

  .job-clvr-container.is-open .mob-clvr-dimmed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;    
  }

  .job-clvr-container.is-open .job-clvr-position {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding-top: 60px;
    background-color: var(--white);
    border-radius: 8px 8px 0 0;
    z-index: 1000;
  }
  .job-clvr-container.is-open .job-clvr-position::before {
    content: 'AI멘토';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.4rem;
    font-weight: 600;
  }
  .job-clvr-container.is-open .btn-mob-clvr-colse {
    display: block;
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 2000;
  }
  .job-clvr-container.is-open .job-clvr-wrap {
    height: calc(100vh - 180px);
    max-height: none;
    min-height: auto;
  }
  .job-clvr-container.is-open .job-clvr-wrap {
    background: url(/images/clvr/gradation-bottom-m.png) no-repeat center bottom / 100%;
  }

  .job-clvr-container.is-open .job-clvr-position .clvr-search-wrap {
    bottom: 100px;
  }



  .job-clvr-container.is-open .job-clvr-position.clvr-stage-chatview .job-clvr-wrap {
    padding: 0 20px;
    background: none;
  }



}

@media (max-width: 767px) {
  /* 필터 설정 팝업 */
  .pop-con-inner {
    padding: 0;
  }
  .pop-cont.pop-cont-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
  .pop-filter-aside {
    width: 120px;
    padding: 12px;
  }
  .pop-tab-item {
    padding: 12px 10px;
    font-size: 1.4rem;
  }
  .career-range-box {
    flex-direction: column;
    gap: 40px;
  }
  .pop-body {
    height: calc(100vh - 160px);
  }
  .slider-mock-wrap {
    width: 90%;
  }
  .value-display {
    text-align: center;
  }
  .slider-wrapper {
    margin-top: 20px;
  }
  .career-direct-input {
    width: 200px;
  }
  .input-year {
    width: 175px;
    height: 44px;
  }
  .pop-tab-item:hover .btn-filter-reset {
    display: none;
  }
  .btn-filter-reset {
    display: none;
  }
  .btn-filter-tag {
    padding: 14px;
  }
  .pop-footer {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
  }

  /* 직무 아코디언 UI */
  .category-depth1 {
    padding-bottom: 130px;
  }
  .job-category {
    display: block;
  }
  .category-depth1-wrap {
    height: 100vh;
    border-right: 0;
  }
  .category-depth1-item {
    min-height: 40px;
    padding: 0 12px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .category-depth1-item.active {
    color: var(--primary-700);        
  }
  .category-depth2 {
    display: none;
  }
  .mobile-accordion-panel {
    display: block;
    padding: 16px 20px 30px 16px;
    border-bottom: 1px solid var(--line-gray1);
  }
  .category-depth2-tag {
    padding: 14px;
  }

  /* 공고 상세보기 팝업 */
  .pop-full-close .btn-pop-close {
    top: 13px;
  }
  .pop-inner {
    padding: 0 20px;
  }
  .detail-job-tit {
    position: relative;
  }
  .detail-company-logo {
    display: none;
  }
  .detail-job-tit .job-date {
    position: absolute;
    bottom: -50px;
    left: 0;
  }
  .pop-full-header {
    padding-top: 24px;
  }
  .detail-company-tit {
    width: 100%;
  }
  .detail-recruit-nm {
    margin-top: 20px;
    font-size: 2rem;
  }
  .pop-full-header {
    z-index: 0;
  }
  .pop-full-body {
    position: relative;
    background-color: var(--white);
    z-index: 10;
  }
  .anchor-tab-wrap {
    top: 0;
  }
  .btn-icon-newtab {
    display: none;
  }
  .com-info-cont {
    gap: 40px;
  }
  .com-info-label {
    font-size: 1.5rem;
  }
  .com-info-value, 
  .com-info-value a {
    font-size: 1.6rem;
  }
  .com-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px; 
  }
  .com-stat-grid > *:nth-child(5) {
    grid-column: span 2;
  }  
  .com-stat-label {
    margin-bottom: 6px;
  }
  .spec-donut-item {
    padding: 16px;
  }
  .spec-bar-item {
    padding: 16px;
  }
  .spec-table-container {
    flex-direction: column;
    gap: 40px;
  }
  .spec-table-box {
    width: 100%;
  }
  .basic-desc {
    font-size: 1.6rem;
  }
  .btn-plan-purchase {
    height: 34px;
  }
  .btn-plan-purchase span {
    display: none;
  }
  .btn-boldtext {
    margin-left: 0;
  }
  .btn-boldtext:before {
    display: none;
  }
  .com-report-logo {
    display: none;
  }
  .com-report-text {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
  .com-report-text strong {
    font-size: 1.6rem;
  }
  .com-report-badge {
    height: 38px;
  }
  .review-info {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-top: 16px;
  }
  .btn-review {
    align-self: flex-end;
  }
  .review-tit {
    font-size: 1.8rem;
  }
  .review-desc {
    font-size: 1.6rem;
  }
  .job-original img {
    width: 100%;
  }

  /* 리뷰 등록 및 수정 팝업 */
  .pop-mob-bottom {
    align-items: end;
  }
  .pop-mob-bottom.pop-cont {
    border-radius: 8px 8px 0 0;
  }
  .pop-cont-md {
    width: 100%;
  }
  .pop-body-review {
    padding: 0 20px;
  }
  .tab-menu {
    font-size: 1.6rem;
  }
  .review-cont {
    padding-top: 32px;
    padding-bottom: 90px;
  }
  .info-box-purple {
    display: none;
  }
  .form-input-label {
    font-size: 1.5rem;
  }
  .pop-mob-bottom .pop-bottom {
    padding: 0 20px 37px; 
  }

  /* 알림 설정 팝업 */
  .pop-con-inner.pop-con-center {
    padding: 0 20px;
  }


}

@media (max-width: 639px) {
  /* 공고 상세보기 팝업 */
  .anchor-tab .anchor-tab-item {
    flex: auto;
  }
  .spec-donut-list {
    gap: 3%;
  }
  .spec-donut-item {
    margin-bottom: 16px;
  }
  .spec-bar-list {
    gap: 3%;
  }
  .spec-bar-item {
    margin-bottom: 16px;
  }  
}

@media (max-width: 575px) {
  /* 공고 상세보기 팝업 */
  .review-item {
    gap: 12px;
  }
  .review-face {
    width: 40px;
    height: 40px;
  }  
}

@media (max-width: 499px) {
  /* 공고 상세보기 팝업 */
  .anchor-tab-wrap {
    overflow-y: hidden;
    overflow-x: auto;
  }
  .anchor-tab {
    width: 490px;
  }
  .anchor-tab .anchor-tab-item {
    padding-left: 12px;
    padding-right: 12px;
  }
  .bar-chart-wrapper {
    aspect-ratio: 4 / 4.9;
  }
}
