
.joinus-wrap {
    display: flex;
    gap: 120px;
}
/* =========================================
   🖥️ PC 버젼 기본 세팅
========================================= */
.joinus-hero {
    position: relative;
    width: 100%;
    height: 550px; 
    overflow: hidden;
}

.joinus-hero .hero-img-wrap {
    width: 100%;
    height: 100%;
}

/* PC에서는 PC 이미지만 꽉 차게 노출 */
.joinus-hero .pc-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; /* 기존 background-position 대응 */
    display: block;
}

/* PC에서는 모바일 이미지와 별도 텍스트 레이어를 완전히 숨김 */
.joinus-hero .mo-hero-img,
/* .joinus-hero .hero-text {
    display: none;
} */
.hero-text h1 {
    font-size: 54px;
    font-weight: 700;
    color: #fff;
}

/* 좌측 */
.filter-panel {
	margin-left: -35px;
    width: 220px;
}

/* 우측 */
.job-list {
    flex: 1;
}

.job-item:first-child{
	border-top: 1px solid rgba(136, 136, 136, 1);
	
}
.job-item:last-child{
	border-bottom: none;
}



.filter-panel .search-box {
    position: relative;
    margin-bottom: 40px;
}

.filter-panel .search-box input {
    width: 100%;
    height: 40px;
    background: #f4f4f4;
    border: none;
    padding: 0 35px 0 12px;
    font-size: 14px;
}

.filter-panel .search-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.filter-header{
	    display: flex;
    align-items: center;
    width: 100%;
	
}
.filter-header:hover {
	    color: rgba(93, 19, 234, 1);
	
}



.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.filter-item {
    display: flex;
    flex-direction: column;
    
    
    justify-content: space-between;
  
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(136, 136, 136, 1);
    cursor: pointer;
    font-size: 16px;
    color:rgba(0, 0, 0, 1);
    font-style:Bold;
    font-weight: 700;
}

/* 펼쳐질 영역 */
.filter-content {
	
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);

    transition: 
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* 열렸을 때 */
.filter-item.active .filter-content {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}




/* 아이콘 회전 */
.filter-header i {
    transition: transform 0.3s;
     margin-left: auto; 
}

.filter-item.active .filter-header i {
    transform: rotate(180deg);
}


/* 리스트 스타일 */
.filter-content ul {
    padding: 10px 0;
}

.filter-content li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    
    margin-left:10%;
    
    cursor: pointer;
}

.filter-content li:hover {
    color: rgba(93, 19, 234, 1);
}






.job-item {
    display: flex;
    justify-content: space-between;
   
      align-items: flex-start; 
    
    
    padding: 25px 0;
    border-bottom: 1px solid rgba(136, 136, 136, 1);
}
.job-item .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge {	
	width:70px;	
	text-align:center;
    font-size: 12px;
	font-style: Bold;
    padding: 6px 12px;	
	letter-spacing:0%;
    font-weight: 600;
}

.badge.active {
    background: rgba(93, 19, 234, 1);
    color: rgba(255, 255, 255, 1);
}

.badge.disabled {
    background: rgba(241, 243, 245, 1);
    color: rgba(192, 192, 192, 1);
}
.job-info h4 {
    font-size: 16px;
    font-weight: 700;
    font-style: Bold;
    
    margin-bottom: 6px;
    color:rgba(0, 0, 0, 1);
}

.job-info h4:hover{
	color :rgba(93, 19, 234, 1);
}

.job-info p {
    font-size: 13px;
    color: rgba(136, 136, 136, 1);
}
.job-item .right {
	
	text-align:center;
    display: flex;
    font-style: Regular;
    font-weight: 400;
      font-size: 14px;
    gap: 80px;
    color: rgba(51, 51, 51, 1);
    
     margin-top: 14px;
  	 margin-right: 80px;
}


/*mobile*/

@media (max-width: 768px) {

	.joinus-hero {
        height: 300px !important; /* 모바일 공통 Hero 높이 지정 */
        padding: 0 !important;
    }

    /* PC 이미지는 가리고 모바일 이미지만 활성화 */
    .joinus-hero .pc-hero-img {
        display: none !important;
    }

    .joinus-hero .mo-hero-img {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* 모바일 공통 텍스트 레이어 활성화 및 위치 조정 */
    .joinus-hero .hero-text {
        display: block !important;
        position: absolute;
        top: 75%;
        left: 20px;
        transform: translateY(-50%);
        color: #fff;
        z-index: 2;
    }

    .joinus-hero .hero-text h1 {
        font-size: 26px !important;
        font-weight: 700;
        width: auto;
        letter-spacing: 0%;
    }

 
	
  .joinus-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
    
   
    

  }

  .filter-panel {
    width: 100%;
  }

  .job-list {
    width: 100%;
     padding-right:30px;
  }


	 .search-box {
	 
	 padding-left:35px;
    width: 100%;
  }

  .search-box input {
    width: 100%;
    height: 48px;
    padding: 0 40px 20px 15px;
    background: #f4f4f4;
    border: none;
    
  }

  .search-box i {
    right: 15px;
    left: auto;
  }
	
   .filter-item {
    border-bottom: 1px solid rgba(136, 136, 136, 1);
  }
	
   .filter-group {
   padding-left: 35px;
}
   
	
  .filter-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
  }

  .filter-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

.filter-content li {
	
	    margin-left: 20px !important;
	}


  .filter-item.active .filter-content {
    max-height: 200px;
    padding-bottom: 10px;
  }
  .job-item:first-child{
  border-top: none !important;
  
  }
  .job-item:last-child{
  border-bottom:1px solid rgba(136, 136, 136, 1);
  }
  .job-item {
     position: relative; 
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
    
   
    
  }
  .badge {
    position: absolute;
    right: 0;
    top: 60px;

    width: 64px;
    height: 28px;

    font-size: 12px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* 상단 영역 */
  .job-item .left {
   display: block;
  }

  /* 제목 */
  .job-info h4 {
      font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    padding-right: 80px; 
  }

    .job-info p {
    order: 3;
    font-size: 12px;
    color: #aaa;
  }

  /* 뱃지 우측 */
  .badge {
    min-width: 70px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  .badge.active {
    background: #5D13EA;
    color: #fff;
  }

  .badge.disabled {
    background: #eee;
    color: #999;
  }

  /* 하단 meta */
 .job-item .right {
    order: 2;
    display: flex;
    gap: 10px;

    font-size: 13px;
    color: #666;

    margin: 0;
  }
}
