/* ======================================================
   OPEN POSITIONS SECTION
====================================================== */

.open-positions-section{
    padding:100px 0;
    background:#ffffff;
}

.open-positions-section .container{
    width:min(1200px,90%);
    margin:auto;
}

/* ======================================================
   JOB GRID
====================================================== */

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* ======================================================
   JOB CARD
====================================================== */

.job-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    padding:35px;
    transition:all .35s ease;
}

/* ======================================================
   JOB HEADER
====================================================== */

.job-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.job-header h3{
    font-size:26px;
    color:#222;
    margin:0;
    font-weight:700;
}

/* ======================================================
   JOB TYPE BADGE
====================================================== */

.job-type{
    background:#198754;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

/* ======================================================
   JOB META
====================================================== */

.job-meta{
    list-style:none;
    margin:0 0 25px;
    padding:0;
}

.job-meta li{
    padding:8px 0;
    border-bottom:1px solid #f0f0f0;
    font-size:15px;
    color:#555;
}

.job-meta li:last-child{
    border-bottom:none;
}

.job-meta strong{
    color:#222;
}

/* ======================================================
   DESCRIPTION
====================================================== */

.job-description{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

/* ======================================================
   SKILLS
====================================================== */

.job-skills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
}

.job-skills span{
    background:#f5f5f5;
    color:#444;
    padding:8px 14px;
    border-radius:25px;
    font-size:14px;
    font-weight:500;
}

/* ======================================================
   BUTTON
====================================================== */

.job-card .btn{
    width:100%;
    padding:14px;
    font-weight:600;
    text-align:center;
}

/* ======================================================
   HOVER EFFECTS
====================================================== */

.job-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    border-color:#198754;
}

.job-card .btn{
    transition:all .30s ease;
}

.job-skills span{
    transition:all .30s ease;
    cursor:default;
}

.job-skills span:hover{
    background:#198754;
    color:#ffffff;
}

/* ======================================================
   TABLET RESPONSIVE
====================================================== */

@media (max-width:992px){

    .jobs-grid{
        grid-template-columns:1fr;
    }

    .job-header h3{
        font-size:24px;
    }

}

/* ======================================================
   MOBILE RESPONSIVE
====================================================== */

@media (max-width:768px){

    .open-positions-section{
        padding:70px 0;
    }

    .job-card{
        padding:25px;
    }

    .job-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .job-header h3{
        font-size:22px;
    }

    .job-description{
        font-size:15px;
    }

    .job-meta li{
        font-size:14px;
    }

    .job-card .btn{
        width:100%;
    }

}

/* ======================================================
   SMALL MOBILE
====================================================== */

@media (max-width:480px){

    .job-card{
        padding:20px;
    }

    .job-header h3{
        font-size:20px;
    }

    .job-type{
        font-size:12px;
        padding:7px 14px;
    }

    .job-skills span{
        font-size:13px;
        padding:7px 12px;
    }

}