/* 채용 페이지 스타일 */
.filter-container {
    width: 100%;
    max-width: 1500px;
    margin: 0;
}

.filter-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.fixed-bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 100px;
    margin-bottom: 40px;
    border-radius: 10px;
}

.fullscreen-section.hero-section {
    padding-top: 200px;
    padding-bottom: 100px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.banner-text {
    flex: 1;
    word-break: keep-all;
}

.banner-text h2{
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.banner-text h3 {
    font-size: 14px;
    margin: 0;
}

.banner-text p{
    font-size: 14px;
    color: #000000;
    margin: 0;
}

.highlight-amount {
    color: #2079ff;
}

.banner-action {
    flex-shrink: 0;
}

.banner-btn {
    background: linear-gradient(270deg, #0044ff, #018dff, #0044ff);
    background-size: 200% 100%;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 68, 255, 0.3);
    background-size: 200% 100%;
}

.filter-dropdown {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.dropdown-toggle {
    width: 100%;
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 100;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #fff;
}

.dropdown-item[data-value="all"] {
    color: #0066ff;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-tag {
    background-color: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tag i {
    cursor: pointer;
    font-size: 10px;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.filter-count {
    color: #ffffff;
    font-size: 14px;
}

.filter-count #filtered-count {
    color: #0066ff;
    font-weight: 500;
}

#resetFilters {
    background: none;
    border: none;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 구분선 */
.separator {
    width: 100%;
    height: 1px;
    background-color: #333333;
    margin: 40px 0;
    opacity: 0.5;
}

/* 채용 목록 */
.job-listings {
    width: 100%;
    margin-bottom: 40px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.job-item {
    background-color: #222222;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.job-item:hover {
    background-color: #333333;
}

.job-info {
    flex: 1;
}

.job-title {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.job-status {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
}

.job-status.active {
    background-color: #0066ff;
    color: #fff;
}

.job-status.always {
    background-color: #28a745;
    color: #fff;
}

.job-status.upcoming {
    background-color: #ffc107;
    color: #000;
}

.job-status.closed {
    background-color: #6c757d;
    color: #fff;
}

.job-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 10px;
}

.job-meta .badge {
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.job-details {
    color: #aaa;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.job-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    transition: background-color 0.2s;
}

.job-item:hover .job-arrow {
    background-color: #0066ff;
}

.no-results-message {
    text-align: center;
    color: #aaa;
    padding: 30px;
    width: 100%;
}

#loading-indicator {
    text-align: center;
    padding: 30px;
    color: #aaa;
}

/* 채용 상세 페이지 */
.job-detail-page .job-detail-content {
    padding: 120px 0 60px;
}

.job-header {
    margin-bottom: 60px;
}

.job-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.job-meta-item {
    display: flex;
    flex-direction: column;
}

.job-meta-item strong {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.job-meta-item span {
    font-size: 1rem;
    color: #fff;
}

.job-description {
    color: #dedede;
    max-width: 800px;
    margin-bottom: 60px;
}

.job-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5rem;  
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.job-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.job-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: none;
}

.job-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.job-section li::before {
    content: "•";
    position: absolute;
    left: -10px;
    color: #FFC805;
}

.job-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.share-btn {
    padding: 12px 24px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.share-btn:hover {
    background-color: #f5f5f5;
}

.apply-btn {
    padding: 12px 24px;
    background-color: #1a75bb;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.apply-btn:hover {
    background-color: #FFC805;
}

/* 유사 직무 섹션 */
.job-similar-section {
    margin-top: 60px;
}

.similar-jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.job-card {
    display: block;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}


.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: #333333;
    border-color: #444444;
}

.job-card-header {
    margin-bottom: 16px;
    text-align: left;
}

.job-card {
    border: 0.5px solid #878787;
}

.job-card-header h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.badge {
    display: inline-block;
    background: linear-gradient(270deg, #0044ff, #018dff, #0044ff);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    animation: gradientSlide 3s ease infinite;
}

.job-card-description {
    margin-bottom: 20px;
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    text-align: left;
}

.job-info {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.4;
}

.job-link-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 500;
    color: #2079ff;
    margin-top: 15px;
    gap: 8px;
}

.job-link-arrow i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.job-card:hover .job-link-arrow {
    color: #FFC805;
}

.job-card:hover .job-link-arrow i {
    transform: translateX(3px);
}

/* 고정된 지원 정보 스타일 */
.fixed-apply-container {
    max-width: 400px;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.fixed-job-info {
    padding: 25px;
}

.job-meta-right {
    margin-bottom: 25px;
}

.fixed-job-info .job-meta-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 14px;
}

.fixed-job-info .job-meta-item:last-child {
    margin-bottom: 0;
}

.fixed-job-info .job-meta-item strong {
    font-weight: 600;
    color: #555;
    margin-right: 10px;
    min-width: 70px;
}

.fixed-job-info .job-meta-item span {
    color: #333;
    font-weight: 500;
    flex: 1;
    text-align: right;
}

.fixed-job-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-job-actions .share-btn {
    display: block;
    padding: 12px;
    width: 100%;
    background-color: #f5f5f5;
    color: #555;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fixed-job-actions .share-btn:hover {
    background-color: #eee;
}

.fixed-job-actions .apply-btn {
    display: block;
    padding: 15px;
    text-align: center;
    width: 100%;
    background-color: #1a75bb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fixed-job-actions .apply-btn:hover {
    background-color: #FFC805;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 200, 5, 0.3);
}

.hero-description {
    color: rgba(153, 153, 153, 1);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2rem;
    word-break: keep-all;
    max-width: 600px;
    font-weight: 600;
}

.footer-bottom {
    padding-bottom: 200px;
}

/* 채용 프로세스 섹션 */
.recruit-faq {
    margin-top: 20px;
}

/* 채용 페이지 FAQ */
.faq-item .faq-question h3 {
    color: #ffffff;
}

.faq-item .faq-toggle i {
    color: #ffffff;
}

.faq-item .faq-answer p {
    color: #cccccc;
}

/* 채용 페이지 CTA 섹션 */
.cta-banner {
    background-color: #000;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.job-openings-section {
    padding: 100px 0;
    background-color: #000;
}

.job-openings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* 페이지 레이아웃 */
.split-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.left-container {
    width: 100%;
}

.right-container {
    position: fixed;
    top: 100px;
    height: fit-content;
    align-self: flex-start;
}

.right-container {
    position: relative;
    top: auto;
    width: 100%;
    right: auto;
    transform: none;
}

/* 모바일에서만 표시될 하단 고정 지원하기 버튼 */
.mobile-apply-btn {
    display: none;
}

/* 미디어 쿼리 */
@media (max-width: 992px) {
    .job-openings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fixed-apply-container {
        width: 250px;
    }
    
    .split-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .job-listings {
    }
    
    .filter-dropdowns {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-dropdown {
        width: 100%;
        min-width: auto;
    }
    
    .job-list {
        padding: 15px 0;
        gap: 15px;
    }
    
    .job-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .job-card-header h3 {
        font-size: 16px;
    }
    
    .job-card .job-info {
        font-size: 13px;
    }
    
    .job-meta, .job-meta-bottom {
        flex-direction: column;
    }
    
    .job-meta-item {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .job-actions {
        flex-direction: column;
    }
    
    .share-btn, .apply-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .cta-banner {
        padding: 4rem 1rem;
    }
    
    .cta-banner h2 {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons .btn-white {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .job-openings-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .similar-jobs-container {
        grid-template-columns: 1fr;
    }
    
    .split-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .right-container {
        display: none;
    }
    
    .mobile-apply-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    
    .mobile-apply-btn .apply-btn {
        display: block;
        width: 100%;
        padding: 15px;
        text-align: center;
        background-color: #1a75bb;
        color: white;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
    }
    
    .fixed-apply-container {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 10px 10px 0 0;
        border-top: 1px solid #eee;
    }
    
    .fixed-job-info {
        padding: 15px;
    }

    .job-meta-right {
        display: none;
    }
    
    .fixed-job-actions {
        flex-direction: row;
    }
    
    main {
        padding-bottom: 80px;
    }

    .fixed-bottom-banner {
        margin: 0 20px;
        margin-bottom: 20px;
    }

    .banner-text h2 {
        font-size: 20px;
    }

    .banner-text h3 {
        font-size: 12px;
    }

    .banner-btn {
        font-size: 14px;
        padding: 10px 15px;

    }
}

@media (max-width: 480px) {
    .job-listings {
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 2rem;
        max-width: 600px;
        font-weight: 400;
    }

    .selected-option {
        font-size: 12px;
    }
    
    .job-card {
        padding: 16px;
    }
    
    .job-card-header h3 {
        font-size: 15px;
    }
    
    .job-card .job-info {
        font-size: 12px;
        line-height: 1.3;
    }

    .banner-text h2 {
        font-size: 18px;
    }

    .banner-text h3 {
        font-size: 12px;
    }
    
    .banner-content {
        flex-direction: column;
    }

    .banner-text {
        text-align: center;
    }
    
    .banner-action {
        width: 100%;
    }
    
    .banner-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 20px;
        font-size: 14px;
        display: block;
        text-align: center;
    }

    .banner-content {
        gap: 10px;
    }
}

@media (max-width: 415px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 2rem;
        padding: 0 20px;
    }
    
    .cta-buttons .btn-white,
    .cta-buttons .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        text-align: center;
        box-sizing: border-box;
        margin: 0;
    }
    
    .cta-banner {
        padding: 3rem 1rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}
