/* css/career-paths-section.css */

.career-paths-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.career-paths-section .section-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-paths-section .section-header {
    text-align: center;
    margin-bottom: 45px;
}

.career-paths-section .section-header .badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}

.career-paths-section .section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
    line-height: 1.35;
}

.career-paths-section .section-header .subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* カードグリッド */
.career-path-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.career-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    text-decoration: none;
    color: #334155;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.career-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.card-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.card-badges .badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-badges .badge.path {
    background: #f0fdf4;
    color: #15803d;
}

.card-badges .badge.concern {
    background: #fef2f2;
    color: #b91c1c;
}

.career-card h3.card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 20px;
}

/* タイムラインビジュアル */
.card-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 20px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item .phase {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 2px;
}

.timeline-item .status {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 800;
}

.timeline-arrow {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: bold;
}

.career-card .card-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px;
}

.career-card .read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8b5cf6;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: transform 0.2s ease;
}

.career-card:hover .read-more {
    transform: translateX(4px);
}

.career-paths-section .section-cta {
    text-align: center;
    margin-bottom: 30px;
}

.message-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1.5px dashed #cbd5e1;
    border-radius: 16px;
    text-align: center;
}

.message-box .message {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

@media (max-width: 768px) {
    .career-paths-section {
        padding: 60px 0;
    }
    .career-paths-section .section-header h2 {
        font-size: 1.4rem;
    }
    .career-path-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .career-card {
        padding: 20px;
    }
    .career-card h3.card-title {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }
    .card-timeline {
        padding: 8px 12px;
    }
    .timeline-item .status {
        font-size: 0.75rem;
    }
}
