@charset "UTF-8";

/* =========================================================
   careers.css - 인재초빙 페이지 전용 스타일
========================================================= */

/* 2단 그리드 (채용 분야 & 복지 혜택) */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.careers-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--line-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.careers-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 15px; color: var(--primary-color); }
.careers-card > p { font-size: 16px; color: var(--text-light); line-height: 1.7; margin-bottom: 25px; word-break: keep-all; }

/* 채용 포지션 태그(Pill) 스타일 */
.positions-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}
.position-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #eee;
    background: var(--bg-light);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.position-tag:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.position-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-blue);
}
.position-dot.red { background: var(--accent-color); }

/* 복지 혜택 리스트 */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefits-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-main);
    font-weight: 500;
}
.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 18px;
}
.benefits-list strong { color: var(--primary-color); font-weight: 800; }

/* 채용 절차 (Process) 영역 */
.process-container {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--line-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.process-steps::before {
    content: "";
    position: absolute;
    top: 40px; /* 아이콘 중앙 */
    left: 50px;
    right: 50px;
    height: 2px;
    background: #eee;
    z-index: 1;
}
.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #ccc;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.step:hover .step-icon {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(231,76,60,0.1);
}
.step h4 { font-size: 18px; font-weight: 800; color: var(--primary-color); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.5; word-break: keep-all; }

/* 하단 CTA 영역 */
.cta-wrap { margin-top: auto; padding-top: 20px; }

/* 모바일 반응형 */
@media (max-width: 768px) {
    .page-header h1 { font-size: 32px; }
    .careers-grid { grid-template-columns: 1fr; gap: 20px; }
    .careers-card { padding: 30px 20px; }
    .position-tag { font-size: 14px; padding: 8px 16px; }
    
    .process-container { padding: 30px 20px; }
    .process-steps { flex-direction: column; gap: 30px; }
    .process-steps::before {
        top: 50px; bottom: 50px; left: 50px; right: auto; width: 2px; height: auto;
    }
    .step { display: flex; align-items: center; text-align: left; gap: 20px; width: 100%; }
    .step-icon { margin: 0; width: 60px; height: 60px; font-size: 18px; flex-shrink: 0; }
}