
/* Career Section */
#career {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Career Intro */
.career-intro {
    text-align: center;
    padding: 40px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.career-intro p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* 인재상 Cards */
.talent-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.talent-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}
/*
.talent-card h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
*/
.talent-card h5 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.talent-card h5 i {
    flex-shrink: 0;
}
.talent-emoji {
    font-size: 1.5rem;
}

.talent-card p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* 조직 문화 Section */
.culture-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.culture-section h4 {
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    /* border-bottom: 3px solid #667eea; */
    border-bottom: 3px solid #0dcaf0;
}

.culture-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    /* border-left: 4px solid #667eea; */
    border-left: 4px solid #0dcaf0;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.culture-item h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.culture-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* 복리후생 Section */
.benefits-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefits-section h4 {
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    /* border-bottom: 3px solid #667eea; */
    border-bottom: 3px solid #0dcaf0;
}

.benefit-category {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-category:hover {
    /* border-color: #667eea; */
    border-color: #0dcaf0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.benefit-category h6 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #495057;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    /* color: #667eea; */
    color: #0dcaf0;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-list li:hover {
    /* color: #667eea; */
    color: #0dcaf0;
    padding-left: 35px;
}

/* 근무 위치 */
.office-location {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.office-location h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-info:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-info i {
    font-size: 1.8rem;
    /* color: #667eea; */
    color: #0dcaf0;
    flex-shrink: 0;
}

.location-info h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.location-info p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* 채용 프로세스 */
.recruitment-process {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.recruitment-process h4 {
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    /* border-bottom: 3px solid #667eea; */
    border-bottom: 3px solid #0d6efd;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 150px;
}

.process-step-number {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.process-step-label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.process-arrow {
    /* color: #667eea; */
    color: #0d6efd;
    font-size: 2rem;
    font-weight: bold;
    align-self: center;
}

/* .process-step:last-child .process-arrow {
    display: none;
} */

.process-note {
    /* background: #fff3cd; */
    background: #F5F7FA;
    /* border-left: 4px solid #ffc107; */
    border-left: 4px solid #cccccc;
    padding: 15px 20px;
    border-radius: 8px;
    /* color: #856404; */
}

.process-note strong {
    color: #d39e00;
}

/* 채용 포지션 */
.no-position-message {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px dashed #dee2e6;
}

.no-position-message h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-position-message p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* 지원 방법 */
.application-method {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.application-method h5 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.application-method ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.application-method ul li {
    padding: 15px 0 15px 5px;
    position: relative;
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
}

.application-method ul li:before {
    /* content: "📧"; */
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.application-method strong {
    /* color: #667eea; */
    color: #0d6efd;
    font-weight: 700;
}

.application-example {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}


/* Responsive Design */
@media (max-width: 991px) {
    .career-intro {
        padding: 30px 25px;
    }
    
    .career-intro p {
        font-size: 1.1rem;
    }
    
    .talent-card {
        padding: 25px;
    }
    
    .culture-section,
    .benefits-section,
    .office-location,
    .recruitment-process,
    .application-method {
        padding: 30px 25px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .process-step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-step-label {
        text-align: left;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .career-intro {
        padding: 25px 20px;
    }
    
    .career-intro p {
        font-size: 1rem;
    }
    
    .talent-card {
        padding: 20px;
    }
    /*
    .talent-card h5 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    */
    .talent-card h5 {
        font-size: 0.95rem;
        gap: 0.4rem;
    }
    
    .talent-card h5 i {
        font-size: 1rem;
    }
    .talent-emoji {
        font-size: 1.3rem;
    }
    
    .culture-section,
    .benefits-section,
    .office-location,
    .recruitment-process,
    .application-method {
        padding: 25px 20px;
    }
    
    .culture-section h4,
    .benefits-section h4,
    .recruitment-process h4 {
        font-size: 1.3rem;
    }
    
    .culture-item {
        padding: 20px;
    }
    
    .culture-item h6 {
        font-size: 1rem;
    }
    
    .benefit-category {
        padding: 20px;
    }
    
    .benefit-category h6 {
        font-size: 1rem;
    }
    
    .benefit-list li {
        padding: 10px 0 10px 28px;
        font-size: 0.95rem;
    }
    
    .benefit-list li:before {
        font-size: 1rem;
    }
    
    .location-info {
        /*
        flex-direction: column;
        gap: 12px;
        padding: 18px;
        */
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .location-info i {
        font-size: 1.5rem;
    }
    
    .location-info h6 {
        font-size: 1rem;
    }
    
    .office-location h5 {
        font-size: 1.3rem;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step-label {
        font-size: 1rem;
    }
    
    .process-note {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .no-position-message {
        padding: 40px 25px;
    }
    
    .no-position-message h5 {
        font-size: 1.2rem;
    }
    
    .no-position-message p {
        font-size: 1rem;
    }
    
    .application-method h5 {
        font-size: 1.3rem;
    }
    
    .application-method ul li {
        padding: 12px 0 12px 5px;
        font-size: 1rem;
    }
    
    .application-method ul li:before {
        font-size: 1.1rem;
    }
    
    .application-example {
        padding: 18px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .career-intro {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .career-intro p {
        font-size: 0.95rem;
    }
    
    .talent-card {
        padding: 18px;
    }
    
    /* .talent-card h5 {
        font-size: 0.95rem;
    } */
    .talent-card h5 {
        font-size: 0.9rem;
        gap: 0.3rem;
    }
    
    .talent-card h5 i {
        font-size: 0.9rem;
    }
    
    .talent-card p {
        font-size: 0.9rem;
    }
    
    .culture-section,
    .benefits-section,
    .office-location,
    .recruitment-process,
    .application-method {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .culture-section h4,
    .benefits-section h4,
    .recruitment-process h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .culture-item {
        padding: 15px;
    }
    
    .culture-item h6 {
        font-size: 0.95rem;
    }
    
    .culture-item p {
        font-size: 0.9rem;
    }
    
    .benefit-category {
        padding: 18px;
    }
    
    .benefit-category h6 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .benefit-list li {
        padding: 8px 0 8px 25px;
        font-size: 0.9rem;
    }
    
    .location-info {
        /* padding: 15px; */
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .location-info h6 {
        font-size: 0.95rem;
    }
    
    .location-info p {
        font-size: 0.9rem;
    }
    
    .office-location h5 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .process-step {
        gap: 15px;
    }
    
    .process-step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .process-step-label {
        font-size: 0.95rem;
    }
    
    .process-note {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .no-position-message {
        padding: 30px 20px;
    }
    
    .no-position-message h5 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .no-position-message p {
        font-size: 0.95rem;
    }
    
    .application-method h5 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .application-method ul {
        margin-bottom: 20px;
    }
    
    .application-method ul li {
        padding: 10px 0 10px 5px;
        font-size: 0.95rem;
    }
    
    .application-example {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.talent-card,
.culture-item,
.benefit-category,
.location-info,
.process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .career-intro,
    .talent-card,
    .culture-section,
    .benefits-section,
    .office-location,
    .recruitment-process,
    .application-method {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .process-step-number {
        background: #333 !important;
    }
}

