/* =============================================
   SECTION 3 — CAREER OUTCOMES
   ============================================= */

.outcomes-section {
    padding: 70px 0;
    background-color: #fff;
}

/* Job grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.job-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 0 0 0 18px;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

/* Domain accent colors */
.card-ev::before       { background: #22c55e; }
.card-ev:hover         { box-shadow: 0 20px 40px rgba(34, 197, 94, 0.12); }

.card-cad::before      { background: #3b82f6; }
.card-cad:hover        { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12); }

.card-embedded::before { background: #eab308; }
.card-embedded:hover   { box-shadow: 0 20px 40px rgba(234, 179, 8, 0.12); }

.card-it::before       { background: #ef4444; }
.card-it:hover         { box-shadow: 0 20px 40px rgba(239, 68, 68, 0.12); }

.card-automation::before { background: #a855f7; }
.card-automation:hover   { box-shadow: 0 20px 40px rgba(168, 85, 247, 0.12); }

/* Job icon */
.job-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.card-ev .job-icon         { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.card-cad .job-icon        { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.card-embedded .job-icon   { background: rgba(234, 179, 8, 0.1);  color: #eab308; }
.card-it .job-icon         { background: rgba(239, 68, 68, 0.1);  color: #ef4444; }
.card-automation .job-icon { background: rgba(168, 85, 247, 0.1); color: #a855f7; }

.job-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.job-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
    flex-grow: 1;
}

.salary-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    width: fit-content;
}

/* Responsive */
@media (max-width: 991px) {
    .job-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .job-grid { grid-template-columns: 1fr; }
}
