/* 
 * 인크루트 스타일 채용 게시판 CSS
 * 작성일: 2024년
 * 목적: 인크루트 디자인 기반 채용 목록 페이지
 * 참조: https://job.incruit.com/jobdb_list/searchjob.asp
 */

/* 통일된 색상 팔레트 - 메인과 동일 */
:root {
    /* 메인 색상 */
    --incruit-primary: #EC6521;           /* 메인 오렌지 */
    --incruit-secondary: #d4551a;         /* 메인 오렌지 호버 */
    --incruit-badge-bg: #FFF4EC;          /* 연한 오렌지 배경 */
    
    /* 텍스트 색상 */
    --incruit-text-primary: #333333;      /* 기본 텍스트 */
    --incruit-text-secondary: #666666;    /* 보조 텍스트 */
    --incruit-text-muted: #999999;        /* 흐린 텍스트 */
    
    /* 배경 색상 */
    --incruit-card-bg: #ffffff;           /* 흰색 배경 */
    --incruit-background: #f8f8f8;        /* 밝은 배경 */
    --incruit-gray-50: #fafafa;           /* 더 밝은 배경 */
    --incruit-gray-100: #f8f8f8;
    --incruit-gray-200: #f0f0f0;
    --incruit-gray-300: #e5e5e5;
    
    /* 테두리 색상 */
    --incruit-border: #e5e5e5;            /* 밝은 테두리 */
    --incruit-light-border: #f0f0f0;      /* 더 밝은 테두리 */
    
    /* 그림자 */
    --incruit-shadow: 0 2px 4px rgba(0,0,0,0.08);
    --incruit-hover-shadow: 0 4px 8px rgba(0,0,0,0.1);
    
    /* 시스템 색상 */
    --incruit-link: #EC6521;
    --incruit-success: #28a745;
    --incruit-warning: #ffc107;
    --incruit-danger: #dc3545;
    
    /* 폰트 크기 */
    --font-size-base: 14px;
    --font-size-xs: 0.857rem;  /* 12px */
    --font-size-sm: 1rem;      /* 14px */
    --font-size-md: 1.143rem;  /* 16px */
    --font-size-lg: 1.286rem;  /* 18px */
}

/* 모집 게시판 전용 스타일 */
.recruit-write {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: var(--incruit-background);
}

/* 섹션 공통 스타일 - 인크루트 스타일 */
.company-info-section,
.recruit-info-section,
.recruit-conditions-section,
.recruit-period-section,
.manager-info-section,
.content-section {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--incruit-shadow);
    transition: all 0.2s;
}

.company-info-section:hover,
.recruit-info-section:hover,
.recruit-conditions-section:hover,
.recruit-period-section:hover,
.manager-info-section:hover,
.content-section:hover {
    box-shadow: var(--incruit-hover-shadow);
    border-color: var(--incruit-primary);
}

.company-info-section h3,
.recruit-info-section h3,
.recruit-conditions-section h3,
.recruit-period-section h3,
.manager-info-section h3,
.content-section h3 {
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--incruit-border);
    color: var(--incruit-text-primary);
    font-size: var(--font-size-md);
    font-weight: 600;
    position: relative;
}

/* 제목 아래 강조선 */
.company-info-section h3::after,
.recruit-info-section h3::after,
.recruit-conditions-section h3::after,
.recruit-period-section h3::after,
.manager-info-section h3::after,
.content-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: var(--incruit-primary);
}

.company-info-section h3 i,
.recruit-info-section h3 i,
.recruit-conditions-section h3 i,
.recruit-period-section h3 i,
.manager-info-section h3 i,
.content-section h3 i {
    margin-right: 8px;
    color: var(--incruit-primary);
    font-size: var(--font-size-sm);
}

/* 기업정보 섹션 */
.company-info-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.company-logo-area {
    flex-shrink: 0;
    width: 200px;
}

.logo-preview {
    width: 120px;
    height: 64px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.logo-preview img {
    max-width: 120px;
    max-height: 64px;
    object-fit: contain;
}

.no-logo {
    text-align: center;
    color: #999;
}

.no-logo i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

.no-logo p {
    margin: 0;
    font-size: 12px;
}

.logo-upload {
    text-align: center;
}

.upload-desc {
    margin: 8px 0 0 0;
    font-size: 12px;
    color: #666;
}

.company-details {
    flex: 1;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.detail-item label {
    width: 100px;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
}

.detail-item span {
    font-size: 16px;
    color: #555;
}

/* 폼 요소 공통 스타일 */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

/* 중복 스타일 제거됨 */

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
    cursor: pointer;
}

/* 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
    min-width: 120px;
    box-shadow: var(--incruit-shadow);
}

.btn i {
    margin-right: 6px;
}

.btn-primary {
    background: var(--incruit-primary);
    color: white;
    border: 1px solid var(--incruit-primary);
}

.btn-primary:hover {
    background: var(--incruit-secondary);
    border-color: var(--incruit-secondary);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--incruit-hover-shadow);
}

.btn-outline {
    background: white;
    color: var(--incruit-primary);
    border: 1px solid var(--incruit-primary);
}

.btn-outline:hover {
    background: var(--incruit-primary);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* 폼 컨트롤 스타일 개선 */
.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--incruit-primary);
    box-shadow: 0 0 0 2px rgba(236, 101, 33, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 액션 버튼 영역 */
.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
    border-top: 1px solid #e1e8ed;
    margin-top: 30px;
}

/* 에디터 영역 */
.content-editor {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.content-editor textarea {
    width: 100%;
    min-height: 300px;
    padding: 15px;
    border: none;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

/* 날짜 선택 그룹 */
#date_picker_group {
    transition: all 0.3s ease;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .recruit-write {
        padding: 15px;
    }
    
    .company-info-box {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-logo-area {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-item label {
        width: auto;
        margin-right: 0;
    }
}

/* 폼 검증 오류 스타일 */
.form-control:invalid,
.form-select:invalid {
    border-color: #dc3545;
}

.form-control:invalid:focus,
.form-select:invalid:focus {
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

/* 로딩 애니메이션 */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 툴팁 스타일 */
.upload-desc {
    position: relative;
}

/* 캡챠 영역 스타일 */
.captcha-area {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 20px 0;
}

/* 기본 게시판 스타일과의 호환성 */
#bo_w {
    width: 100% !important;
}

/* ============= 게시판 UI 요소 스타일 ============= */

/* 게시판 상단 버튼 영역 */
#bo_btn_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--incruit-border);
}

#bo_list_total {
    font-size: 14px;
    color: var(--incruit-text-secondary);
    font-weight: 500;
}

.btn_bo_user {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn_bo_user li {
    margin: 0;
}

.btn_bo_user .btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 6px;
    border: 1px solid var(--incruit-border);
}

.btn_admin {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn_admin:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

.btn_b01 {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.btn_b01:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

.btn_b02 {
    background: var(--incruit-primary);
    color: white;
    border-color: var(--incruit-primary);
}

.btn_b02:hover {
    background: #d4551a;
    color: white;
    text-decoration: none;
}

.btn_bo_sch {
    background: #28a745;
    color: white;
    border: 1px solid #28a745;
    cursor: pointer;
}

.btn_bo_sch:hover {
    background: #218838;
    color: white;
    border-color: #218838;
}

/* 게시판 하단 관리 버튼 */
.bo_fx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--incruit-border);
}

.btn_bo_adm {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn_bo_adm li {
    margin: 0;
}

.btn_bo_adm input[type="submit"] {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #6c757d;
    background: #6c757d;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn_bo_adm input[type="submit"]:hover {
    background: #5a6268;
    border-color: #5a6268;
}

/* 페이지네이션 스타일 - 그누보드 기본 스타일 덮어쓰기 */
.pg_wrap {
    text-align: center !important;
    margin: 30px 0 !important;
}

/* 그누보드 기본 페이지네이션 완전 재설정 */
.pg_wrap .pg,
.pg_wrap .pg a,
.pg_wrap .pg span,
.pg_wrap .pg strong {
    font-family: inherit !important;
}

.pg {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 15px 0 !important;
}

.pg a,
.pg strong,
.pg span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 32px !important;
    height: 32px !important;
    padding: 0 8px !important;
    border: 1px solid var(--incruit-border) !important;
    background: var(--incruit-card-bg) !important;
    color: var(--incruit-text-secondary) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    border-radius: 4px !important;
    margin: 0 1px !important;
}



.pg a:hover {
    background: var(--incruit-primary) !important;
    color: white !important;
    border-color: var(--incruit-primary) !important;
    text-decoration: none !important;
}

.pg strong {
    background: var(--incruit-primary) !important;
    color: white !important;
    border-color: var(--incruit-primary) !important;
    font-weight: 600 !important;
}

.pg .pg_prev,
.pg .pg_next,
.pg .pg_start,
.pg .pg_end {
    font-size: 12px;
    padding: 0 12px;
    white-space: nowrap;
}

/* 페이지네이션 링크들이 확실히 보이도록 */
.pg .pg_start,
.pg .pg_end,
.pg .pg_prev,
.pg .pg_next,
.pg .pg_page,
a.pg_start,
a.pg_end,
a.pg_prev,
a.pg_next,
a.pg_page {
    color: var(--incruit-text-secondary) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pg .pg_start:hover,
.pg .pg_end:hover,
.pg .pg_prev:hover,
.pg .pg_next:hover,
.pg .pg_page:hover,
a.pg_start:hover,
a.pg_end:hover,
a.pg_prev:hover,
a.pg_next:hover,
a.pg_page:hover {
    color: white !important;
    text-decoration: none !important;
}

/* 페이지네이션 특정 클래스 스타일링 */
.pg a.pg_start,
.pg a.pg_end,
.pg a.pg_prev,
.pg a.pg_next {
    text-indent:0px;
    min-width: 60px !important;
    padding: 0 12px !important;
    font-weight: 500 !important;
}

.pg a.pg_start:hover,
.pg a.pg_end:hover,
.pg a.pg_prev:hover,
.pg a.pg_next:hover {
    background: var(--incruit-primary) !important;
    border-color: var(--incruit-primary) !important;
    color: white !important;
}

/* 검색 영역 스타일 */
.bo_sch_wrap {
    position: relative;
    margin: 20px 0;
    display: none; /* 기본적으로 숨김 */
}

.bo_sch_wrap.show {
    display: block; /* 검색 버튼 클릭 시 표시 */
}

.bo_sch {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--incruit-shadow);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bo_sch h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--incruit-text-primary);
}

.bo_sch form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bo_sch select {
    padding: 8px 12px;
    border: 1px solid var(--incruit-border);
    border-radius: 4px;
    font-size: 13px;
    background: var(--incruit-card-bg);
    color: var(--incruit-text-secondary);
}

.sch_bar {
    display: inline-block;
    align-items: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.sch_input {
    flex: 1;
    padding: 8px 40px 8px 12px;
    border: 1px solid var(--incruit-border);
    border-radius: 4px;
    font-size: 13px;
    background: var(--incruit-card-bg);
    color: var(--incruit-text-primary);
}

.sch_input:focus {
    outline: none;
    border-color: var(--incruit-primary);
    box-shadow: 0 0 0 2px rgba(236, 101, 33, 0.1);
}

.sch_btn {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    width: 36px;
    border: none;
    background: var(--incruit-primary);
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sch_btn:hover {
    background: #d4551a;
}

.bo_sch_cls {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: var(--incruit-text-muted);
    cursor: pointer;
    font-size: 14px;
}

.bo_sch_cls:hover {
    color: var(--incruit-text-primary);
}

.bo_sch_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.bo_sch_wrap.active .bo_sch_bg {
    display: block;
}

/* 숨김 요소 */
.sound_only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ============= 모집 게시판 목록 스타일 ============= */

.recruit-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    /* background: var(--incruit-background); */
}

/* 게시물 목록 컨테이너 - 원본 인크루트 스타일 */
.recruit-posts {
    background: var(--incruit-card-bg);
    /* border: 1px solid var(--incruit-border); */
    border-radius: 8px;
    padding: 0;
    box-shadow: var(--incruit-shadow);
}

/* ============= 통합 검색 및 필터 스타일 ============= */

/* 통합 검색 필터 컨테이너 */
.integrated-search-filter {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 검색 섹션 */
.search-section {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.search-form {
    margin: 0;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-field-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.search-select {
    flex: 0 0 120px;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #ffffff;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #EC6521;
    box-shadow: 0 0 0 3px rgba(236, 101, 33, 0.1);
}

.search-btn {
    padding: 12px 20px;
    background: #EC6521;
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.search-btn:hover {
    background: #d4551a;
}

/* 필터 섹션 */
.filter-section {
    padding: 0;
}

.filter-tabs {
    display: flex;
    border-bottom: 1px solid #f3f4f6;
}

.filter-tab {
    flex: 1;
    border-right: 1px solid #f3f4f6;
    position: relative;
}

.filter-tab:last-child {
    border-right: none;
}

.filter-label {
    display: block;
    padding: 15px 20px;
    background: #f9fafb;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.filter-options {
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    min-height: 60px;
    align-items: center;
}

.filter-option {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f9fafb;
    color: #6b7280;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
    cursor: pointer;
    gap: 4px;
}

.filter-option:hover {
    background: #EC6521;
    color: white;
    border-color: #EC6521;
    text-decoration: none;
    transform: translateY(-1px);
}

.filter-option.active {
    background: #EC6521;
    color: white;
    font-weight: 600;
    border-color: #EC6521;
    box-shadow: 0 2px 4px rgba(236, 101, 33, 0.3);
}

/* 고급 필터 */
.advanced-filter {
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    animation: slideDown 0.3s ease-out;
}

.advanced-filter-content {
    padding: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group-label {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #ffffff;
    color: #6b7280;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #d1d5db;
    white-space: nowrap;
    cursor: pointer;
}

.filter-btn:hover {
    background: #EC6521;
    color: white;
    border-color: #EC6521;
    text-decoration: none;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #EC6521;
    color: white;
    font-weight: 600;
    border-color: #EC6521;
    box-shadow: 0 2px 4px rgba(236, 101, 33, 0.2);
}

/* 활성 필터 표시 */
.active-filters {
    margin: 0;
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.active-filters .filter-label {
    font-weight: 600;
    color: #374151;
    font-size: 13px;
}

.active-filter {
    background: #EC6521;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    box-shadow: 0 1px 3px rgba(236, 101, 33, 0.3);
}

.active-filter a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
    font-size: 14px;
}

.active-filter a:hover {
    opacity: 1;
}

.clear-all-filters {
    background: #ffffff;
    color: #6b7280;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.clear-all-filters:hover {
    background: #fef2f2;
    color: #dc2626;
    border-color: #dc2626;
    text-decoration: none;
    transform: translateY(-1px);
}

/* 게시물 목록 - PC에서 1줄 1개 */
.recruit-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 채용 게시물 카드 - PC 스타일 (첫 번째 이미지) */
.recruit-post-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.recruit-post-card:hover {
    background: #f9fafb;
    border-color: #EC6521;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* PC 레이아웃 - 가로 배치 */
.recruit-post-card .post-main-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.recruit-post-card .post-left-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.recruit-post-card .post-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    gap: 8px;
}

/* PC용 기업 정보 섹션 */
.company-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    width: 200px;
}

.company-logo {
    flex-shrink: 0;
    width: 60px;
    min-height: 50px;
    max-height: 50px;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.company-logo img {
    max-width: 60px;
    max-height: 32px;
    object-fit: contain;
}

.no-logo {
    color: #9ca3af;
    font-size: 14px;
}

.company-details {
    flex: 1;
    min-width: 0;
}

.company-name {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: #6b7280;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* PC용 게시물 내용 */
.post-content {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.post-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-title a:hover {
    color: #EC6521;
    text-decoration: none;
}

.post-excerpt {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PC용 모집 조건 태그 */
.recruit-conditions {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.condition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* PC용 태그 스타일 */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    gap: 4px;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

/* 태그 색상 */
.tag.region {
    background: #fff4ec;
    color: #EC6521;
    border-color: rgba(236, 101, 33, 0.2);
}

.tag.experience {
    background: #eff6ff;
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.2);
}

.tag.preference {
    background: #fef3c7;
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.2);
}

.tag.education {
    background: #f0fdf4;
    color: #16a34a;
    border-color: rgba(22, 163, 74, 0.2);
}

/* PC용 모집 마감일 */
.recruit-deadline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
    min-width: 120px;
}

.deadline {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    min-width: 80px;
}

.deadline.urgent {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.deadline.ongoing {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.deadline.expired {
    background: #f9fafb;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

/* 게시물 액션 버튼 - 인크루트 원본 스타일 간소화 */
.post-actions {
    display: none; /* 원본 사이트는 액션 버튼이 없음 */
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    gap: 6px;
    border: 1px solid transparent;
}

/* 버튼 스타일 - 인크루트 깔끔한 스타일 */
.btn-primary {
    background: var(--incruit-primary);
    color: white;
    border: 1px solid var(--incruit-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--incruit-secondary);
    border-color: var(--incruit-secondary);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--incruit-hover-shadow);
}

.btn-outline {
    background: var(--incruit-card-bg);
    color: var(--incruit-text-secondary);
    border: 1px solid var(--incruit-border);
}

.btn-outline:hover {
    background: var(--incruit-gray-50);
    color: var(--incruit-primary);
    text-decoration: none;
    border-color: var(--incruit-primary);
}

/* 검색 결과 없음 */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-posts i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #dee2e6;
}

.no-posts h3 {
    margin: 0 0 10px 0;
    color: #495057;
}

.no-posts p {
    margin: 0;
}

/* 반응형 디자인 - 통합 검색 필터 */
@media (max-width: 768px) {
    .recruit-list {
        padding: 15px;
    }
    
    /* 통합 검색 필터 모바일 */
    .integrated-search-filter {
        margin-bottom: 16px;
        border-radius: 6px;
    }
    
    .search-section {
        padding: 15px;
    }
    
    .search-field-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-select {
        flex: none;
        width: 100%;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    .search-input {
        border-radius: 6px 0 0 6px;
    }
    
    .search-btn {
        border-radius: 0 6px 6px 0;
        padding: 12px 16px;
    }
    
    /* 필터 탭 모바일 */
    .filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .filter-tab:last-child {
        border-bottom: none;
    }
    
    .filter-label {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .filter-options {
        padding: 12px 15px;
        min-height: 50px;
        justify-content: flex-start;
    }
    
    .filter-option {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    /* 고급 필터 모바일 */
    .advanced-filter-content {
        padding: 15px;
    }
    
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* 활성 필터 모바일 */
    .active-filters {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .active-filters .filter-label {
        font-size: 12px;
    }
    
    .active-filter {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .clear-all-filters {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    /* 모바일 카드 스타일 - 두 번째 이미지 */
    .recruit-post-card {
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 0;
    }
    
    .recruit-post-card .post-main-content {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .recruit-post-card .post-left-content {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }
    
    .recruit-post-card .post-right-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    /* 모바일 기업 정보 */
    .company-info {
        width: 100%;
        gap: 12px;
        margin-bottom: 0;
    }
    
    .company-logo {
        width: 50px;
        min-height: 50px;
        max-height: 50px;
    }
    
    .company-logo img {
        max-width: 50px;
        max-height: 28px;
    }
    
    .company-name {
        font-size: 14px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
    
    .post-meta {
        flex-direction: row;
        gap: 12px;
    }
    
    /* 모바일 게시물 내용 */
    .post-content {
        width: 100%;
    }
    
    .post-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .post-title a {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
    
    /* 모바일 조건 태그 */
    .recruit-conditions {
        margin-top: 12px;
        justify-content: flex-start;
    }
    
    .condition-tags {
        gap: 6px;
    }
    
    .tag {
        padding: 3px 8px;
        font-size: 11px;
        border-radius: 12px;
    }
    
    /* 모바일 마감일 */
    .recruit-deadline {
        min-width: auto;
        align-items: center;
    }
    
    .deadline {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 70px;
        border-radius: 16px;
    }
    
    /* 버튼 및 페이지네이션 반응형 */
    #bo_btn_top {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn_bo_user {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bo_fx {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn_bo_adm {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pg {
        flex-wrap: wrap !important;
        padding: 10px 0 !important;
        gap: 4px !important;
    }
    
    .pg a,
    .pg strong,
    .pg span {
        min-width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
        padding: 0 6px !important;
    }
    
    .pg a.pg_start,
    .pg a.pg_end,
    .pg a.pg_prev,
    .pg a.pg_next {
        min-width: 50px !important;
        padding: 0 10px !important;
    }
    
    .bo_sch form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .sch_bar {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .recruit-list {
        padding: 12px;
    }
    
    /* 통합 검색 필터 초소형 모바일 */
    .integrated-search-filter {
        border-radius: 4px;
        margin-bottom: 12px;
    }
    
    .search-section {
        padding: 12px;
    }
    
    .search-select {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .search-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .filter-label {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .filter-options {
        padding: 10px 12px;
        min-height: 45px;
    }
    
    .filter-option {
        padding: 4px 8px;
        font-size: 11px;
        border-radius: 15px;
    }
    
    .advanced-filter-content {
        padding: 12px;
    }
    
    .filter-group-label {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .active-filters {
        padding: 10px 12px;
        gap: 6px;
    }
    
    .active-filters .filter-label {
        font-size: 11px;
    }
    
    .active-filter {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .clear-all-filters {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    /* 초소형 모바일 카드 스타일 */
    .recruit-post-card {
        padding: 16px;
        border-radius: 6px;
    }
    
    .recruit-post-card .post-main-content {
        gap: 12px;
    }
    
    .recruit-post-card .post-left-content {
        gap: 10px;
    }
    
    .company-info {
        gap: 10px;
    }
    
    .company-logo {
        width: 45px;
        height: 25px;
    }
    
    .company-logo img {
        max-width: 45px;
        max-height: 25px;
    }
    
    .company-name {
        font-size: 13px;
    }
    
    .post-meta {
        gap: 8px;
        font-size: 11px;
    }
    
    .post-title {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 6px;
    }
    
    .post-excerpt {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .recruit-conditions {
        margin-top: 10px;
    }
    
    .condition-tags {
        gap: 4px;
    }
    
    .tag {
        padding: 2px 6px;
        font-size: 10px;
        border-radius: 10px;
    }
    
    .deadline {
        padding: 4px 8px;
        font-size: 11px;
        min-width: 60px;
        border-radius: 12px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .post-excerpt {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ============= 모집 게시판 상세보기 스타일 ============= */

.recruit-view {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* 기업 헤더 - 인크루트 스타일 */
.company-header {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--incruit-shadow);
    position: relative;
}

.company-logo-section {
    flex-shrink: 0;
}

.company-logo-large {
    width: 80px;
    height: 44px;
    object-fit: contain;
    background: var(--incruit-gray-50);
    padding: 6px;
    border-radius: 4px;
    border: 1px solid var(--incruit-light-border);
}

.no-logo-large {
    width: 80px;
    height: 44px;
    background: var(--incruit-gray-100);
    border: 1px solid var(--incruit-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--incruit-text-muted);
}

.company-basic-info {
    flex: 1;
}

.company-basic-info .company-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--incruit-text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.company-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-meta span {
    font-size: 13px;
    color: var(--incruit-text-muted);
    line-height: 1.4;
}

.post-actions-header {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.post-actions-header .btn {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--incruit-border);
    background: var(--incruit-card-bg);
    color: var(--incruit-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-actions-header .btn:hover {
    background: var(--incruit-gray-50);
    border-color: var(--incruit-primary);
    color: var(--incruit-primary);
    text-decoration: none;
}

.post-actions-header .btn-danger {
    color: var(--incruit-danger);
    border-color: rgba(234, 67, 53, 0.3);
}

.post-actions-header .btn-danger:hover {
    background: var(--incruit-danger);
    color: white;
    border-color: var(--incruit-danger);
}

/* 게시물 헤더 - 인크루트 스타일 */
.post-header {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--incruit-shadow);
}

.post-title-section {
    margin-bottom: 16px;
}

.post-category {
    display: inline-block;
    background: var(--incruit-badge-bg);
    color: var(--incruit-primary);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 8px;
    border: 1px solid rgba(236, 101, 33, 0.2);
}

.post-header .post-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--incruit-text-primary);
    margin: 0;
    line-height: 1.4;
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--incruit-text-muted);
    font-size: 13px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: var(--incruit-text-muted);
    font-size: 12px;
    width: 12px;
}

.deadline-info .deadline.urgent {
    color: #dc3545;
    font-weight: 600;
}

.deadline-info .deadline.ongoing {
    color: #28a745;
    font-weight: 600;
}

/* 모집 조건 상세 - 인크루트 스타일 */
.recruit-conditions-detail {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--incruit-shadow);
}

.recruit-conditions-detail h3 {
    margin: 0 0 20px 0;
    color: var(--incruit-text-primary);
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--incruit-primary);
}

.recruit-conditions-detail h3 i {
    margin-right: 8px;
    color: var(--incruit-primary);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.condition-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.condition-item label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.condition-item label i {
    color: #007bff;
    width: 16px;
}

.condition-item span {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    color: #333;
    border-left: 3px solid #007bff;
}

/* 게시물 내용 - 인크루트 스타일 */
.post-content-section {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--incruit-shadow);
}

.post-content-section h3 {
    margin: 0 0 20px 0;
    color: var(--incruit-text-primary);
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--incruit-primary);
}

.post-content-section h3 i {
    margin-right: 8px;
    color: var(--incruit-primary);
}

.content-body {
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}

/* 담당자 정보 - 인크루트 스타일 */
.manager-info-section {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--incruit-shadow);
}

.manager-info-section h3 {
    margin: 0 0 20px 0;
    color: var(--incruit-text-primary);
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--incruit-primary);
}

.manager-info-section h3 i {
    margin-right: 8px;
    color: var(--incruit-primary);
}

.manager-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.manager-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.manager-item label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.manager-item label i {
    color: #007bff;
    width: 16px;
}

.manager-item span a {
    color: var(--incruit-primary);
    text-decoration: none;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s;
}

.manager-item span a:hover {
    background: var(--incruit-primary);
    color: white;
    text-decoration: none;
}

/* 지원신청 섹션 - 인크루트 깔끔한 스타일 */
.apply-section {
    background: var(--incruit-card-bg);
    border: 2px solid var(--incruit-primary);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: var(--incruit-shadow);
}

.apply-notice, .login-notice {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--incruit-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.apply-notice i, .login-notice i {
    font-size: 16px;
    color: var(--incruit-primary);
}

.btn-apply, .btn-login {
    background: var(--incruit-primary);
    color: white;
    border: 1px solid var(--incruit-primary);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.btn-apply:hover, .btn-login:hover {
    background: var(--incruit-secondary);
    border-color: var(--incruit-secondary);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--incruit-hover-shadow);
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--incruit-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--incruit-card-bg);
    color: var(--incruit-text-primary);
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--incruit-text-primary);
}

.modal-header h3 i {
    margin-right: 6px;
    color: var(--incruit-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--incruit-text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--incruit-gray-100);
    color: var(--incruit-text-primary);
}

.modal-body {
    padding: 25px;
}

.apply-company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.apply-company-info h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.company-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-company-logo {
    width: 60px;
    height: 32px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border-radius: 4px;
}

.company-summary div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-summary strong {
    font-size: 16px;
    color: #333;
}

.company-summary span {
    font-size: 14px;
    color: #666;
}

.apply-form-section h4 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-notice {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.privacy-details {
    margin-top: 15px;
}

.privacy-details summary {
    cursor: pointer;
    font-size: 13px;
    color: #007bff;
    text-decoration: underline;
}

.privacy-content {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.privacy-content p {
    margin: 5px 0;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--incruit-border);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    background: var(--incruit-gray-50);
    border-radius: 0 0 12px 12px;
}

/* 첨부파일 및 링크 - 인크루트 스타일 */
#bo_v_file, #bo_v_link {
    background: var(--incruit-card-bg);
    border: 1px solid var(--incruit-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--incruit-shadow);
}

#bo_v_file h3, #bo_v_link h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

#bo_v_file ul, #bo_v_link ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#bo_v_file li, #bo_v_link li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

#bo_v_file li:last-child, #bo_v_link li:last-child {
    border-bottom: none;
}

#bo_v_file a, #bo_v_link a {
    color: var(--incruit-primary);
    text-decoration: none;
}

#bo_v_file a:hover, #bo_v_link a:hover {
    text-decoration: underline;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .recruit-view {
        padding: 15px;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .company-basic-info .company-name {
        font-size: 20px;
    }
    
    .company-meta {
        align-items: center;
    }
    
    .post-actions-header {
        justify-content: center;
    }
    
    .post-header .post-title {
        font-size: 18px;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .manager-details {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 20px auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .company-summary {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .recruit-view {
        padding: 10px;
    }
    
    .company-header {
        padding: 20px 15px;
    }
    
    .company-logo-large, .no-logo-large {
        width: 80px;
        height: 42px;
    }
    
    .no-logo-large {
        font-size: 24px;
    }
    
    .company-basic-info .company-name {
        font-size: 18px;
    }
    
    .post-header, .recruit-conditions-detail, .post-content-section, 
    .manager-info-section, #bo_v_file, #bo_v_link {
        padding: 20px 15px;
    }
    
    .apply-section {
        padding: 25px 15px;
    }
    
    .modal-header, .modal-footer {
        padding: 15px 20px;
    }
}

/* ============= 인크루트 스타일 게시판 배너 ============= */

/* 배너 전체 컨테이너 */
.incruit-board-banners {
    margin-bottom: 32px;
}

.incruit-board-banners .banner-section {
    margin-bottom: 32px;
}

/* 배너 섹션 헤더 - db_section 스타일 적용 */
.banner-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--incruit-card-bg);
    border-bottom: 1px dashed var(--incruit-primary);
}

.banner-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--incruit-text-primary);
}

.banner-product-info {
    font-size: var(--font-size-sm);
    color: var(--incruit-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s;
    padding: 6px 12px;
    border: 1px solid var(--incruit-primary);
    border-radius: 4px;
    background: var(--bg-white);
}
svg{
    margin-right: 5px;
}
.banner-product-info:hover {
    background: #d4551a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(236, 101, 33, 0.3);
}

.banner-product-info i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.banner-product-info:hover i {
    transform: translateX(3px);
}

/* 배너 컨테이너 - 4개 그리드 */
.incruit-board-banners .banner-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.incruit-board-banners .banner-container.banner-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    flex-direction: unset !important;
}

/* 베이직 배너 스타일 (스페셜 -> 베이직) */
.incruit-basic-banner {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.incruit-basic-banner:hover {
    border-color: var(--incruit-primary);
    box-shadow: 0 4px 12px rgba(236, 101, 33, 0.15);
    transform: translateY(-2px);
}

.incruit-basic-banner .banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.incruit-basic-banner .company-logo {
    width: 48px;
    height: 26px;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.incruit-basic-banner .company-logo img {
    max-width: 48px;
    max-height: 26px;
    object-fit: contain;
}

.incruit-basic-banner .company-initial {
    background: var(--incruit-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incruit-basic-banner .company-info {
    flex: 1;
}

.incruit-basic-banner .company-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.incruit-basic-banner .banner-content {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.incruit-basic-banner .banner-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.incruit-basic-banner .banner-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.incruit-basic-banner .banner-badge.basic {
    background: #fff4ec;
    color: var(--incruit-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(236, 101, 33, 0.3);
}

/* 로얄 배너 스타일 (슈프림 -> 로얄) */

.incruit-royal-banner {
    background: #ffffff;
    border: 2px solid #e8eaed;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.incruit-royal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.incruit-royal-banner:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.incruit-royal-banner .banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.incruit-royal-banner .company-logo {
    width: 60px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incruit-royal-banner .company-logo img {
    max-width: 60px;
    max-height: 32px;
    object-fit: contain;
}

.incruit-royal-banner .company-initial {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incruit-royal-banner .banner-badge.royal {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

.incruit-royal-banner .banner-body {
    margin-bottom: 15px;
}

.incruit-royal-banner .company-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.incruit-royal-banner .banner-content {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.incruit-royal-banner .banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: space-between;
    align-items: flex-end;
}

.incruit-royal-banner .banner-meta .meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.incruit-royal-banner .banner-meta .meta-tags span {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.incruit-royal-banner .banner-meta .deadline-text {
    margin-left: auto;
}

/* 하이스트 배너 스타일 (퍼스트 -> 하이스트) */
.incruit-hiest-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.incruit-hiest-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.incruit-hiest-banner .banner-overlay {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.85) 100%);
    padding: 24px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.incruit-hiest-banner .banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.incruit-hiest-banner .company-logo {
    width: 80px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.incruit-hiest-banner .company-logo img {
    max-width: 80px;
    max-height: 42px;
    object-fit: contain;
}

.incruit-hiest-banner .company-initial {
    background: var(--incruit-primary);
    color: white;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incruit-hiest-banner .banner-badge.hiest {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.incruit-hiest-banner .banner-body {
    flex: 1;
    margin-bottom: 20px;
}

.incruit-hiest-banner .company-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.incruit-hiest-banner .job-title {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.incruit-hiest-banner .banner-content {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.incruit-hiest-banner .banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.incruit-hiest-banner .banner-meta .meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.incruit-hiest-banner .banner-meta .meta-tags span {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.incruit-hiest-banner .banner-meta .banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.incruit-hiest-banner .btn-apply {
    background: var(--incruit-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.incruit-hiest-banner .btn-apply:hover {
    background: #d4551a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 101, 33, 0.4);
}

/* 마감일 스타일 공통 */
.deadline-text {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    max-width: 100px;
    text-align: center;
}

.deadline-text.ongoing {
    background: #dcfce7;
    color: #16a34a;
}

.deadline-text.urgent {
    background: #fef2f2;
    color: #dc2626;
}

.deadline-text.today {
    background: #fff7ed;
    color: #ea580c;
}

.deadline-text.normal {
    background: #f0f9ff;
    color: #0284c7;
}

.deadline-text.expired {
    background: #f3f4f6;
    color: #6b7280;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .incruit-board-banners .banner-container.banner-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .banner-section-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        margin-bottom: 16px;
    }
    
    .banner-section-title {
        font-size: 15px;
    }
    
    .banner-product-info {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .incruit-basic-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .incruit-basic-banner .banner-left {
        width: 100%;
    }
    
    .incruit-basic-banner .banner-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .incruit-hiest-banner {
        min-height: 280px;
    }
    
    .incruit-hiest-banner .banner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .incruit-hiest-banner .banner-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .incruit-hiest-banner .banner-meta .banner-actions {
        align-self: stretch;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .incruit-board-banners .banner-container.banner-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .banner-section-header {
        margin-bottom: 12px;
        padding: 10px 12px;
    }
    
    .banner-section-title {
        font-size: 14px;
    }
    
    .banner-product-info {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .incruit-board-banners {
        margin-bottom: 20px;
    }
    
    .incruit-basic-banner {
        padding: 12px;
    }
    
    .incruit-royal-banner {
        padding: 16px;
    }
    
    .incruit-hiest-banner {
        min-height: 250px;
    }
    
    .incruit-hiest-banner .banner-overlay {
        padding: 16px;
    }
}
