/* 채용정보 페이지 스타일 */

/* 페이지 타이틀 섹션 */
.page-title {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,58,109,0.8), rgba(42,82,152,0.8));
}

.page-title .container {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 컨테이너 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 인재상 섹션 */
.talent-vision {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    color: #1a3a6d;
}

.section-title .subtitle {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.talent-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-10px);
}

.talent-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.talent-icon i {
    font-size: 2rem;
    color: #2a5298;
}

.talent-card h3 {
    font-size: 1.4rem;
    color: #1a3a6d;
    margin-bottom: 15px;
}

.talent-card p {
    color: #666;
    line-height: 1.6;
}

/* 채용공고 섹션 */
.job-listings {
    padding: 80px 0;
    background: #f8f9fa;
}

.job-listings h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #1a3a6d;
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #2a5298;
    border-radius: 30px;
    background: transparent;
    color: #2a5298;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2a5298;
    color: #fff;
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.job-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.job-type {
    display: inline-block;
    padding: 5px 15px;
    background: #e9ecef;
    color: #495057;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.job-card h3 {
    font-size: 1.3rem;
    color: #1a3a6d;
    margin-bottom: 20px;
}

.job-info {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.job-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 10px;
}

.job-info i {
    color: #2a5298;
}

.required-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.required-skills span {
    padding: 5px 12px;
    background: #f8f9fa;
    color: #495057;
    border-radius: 15px;
    font-size: 0.9rem;
}

.apply-button {
    display: inline-block;
    padding: 12px 25px;
    background: #2a5298;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background: #1a3a6d;
    transform: translateY(-2px);
}

/* 복리후생 섹션 */
.benefits {
    padding: 80px 0;
    background: #fff;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: #1a3a6d;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #1a3a6d;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* 채용 프로세스 섹션 */
.recruit-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.recruit-process h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    color: #1a3a6d;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dee2e6;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #2a5298;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #1a3a6d;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .talent-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .page-title {
        padding: 80px 0;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .talent-grid {
        grid-template-columns: 1fr;
    }

    .job-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        width: calc(50% - 10px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 2rem;
    }

    .page-title p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .job-card {
        padding: 20px;
    }

    .process-step {
        flex: 0 0 100%;
    }
} 
