/*
|--------------------------------------------------------------------------
| VALORABANK
| CAREERS PAGE CSS
|--------------------------------------------------------------------------
*/

.careers-hero{

    min-height:55vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.92),
        rgba(8,31,77,.78)
    ),
    url('../images/banking/careers-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.careers-hero h1{

    font-size:3.2rem;

    font-weight:800;

}

.careers-section{

    padding:100px 0;

    background:#f8fafc;

}

/* ==============================
JOB CARD
============================== */

.job-card{

    background:#fff;

    border-radius:30px;

    padding:30px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

    transition:.3s;

}

.job-card:hover{

    transform:translateY(-8px);

}

.job-title{

    font-size:22px;

    font-weight:800;

    color:#081F4D;

}

.job-meta{

    margin-top:10px;

    color:#64748B;

    font-size:14px;

}

.job-desc{

    margin-top:15px;

    color:#475569;

    line-height:1.7;

}

/* ==============================
BUTTON
============================== */

.btn-job{

    display:inline-block;

    margin-top:20px;

    padding:12px 25px;

    border-radius:50px;

    background:#FFD447;

    color:#081F4D;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn-job:hover{

    transform:translateY(-3px);

}

/* ==============================
FILTER BAR
============================== */

.filter-bar{

    margin-bottom:40px;

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}

.filter-btn{

    padding:10px 20px;

    border-radius:50px;

    border:1px solid #e5e7eb;

    background:#fff;

    cursor:pointer;

    font-weight:600;

    transition:.3s;

}

.filter-btn.active{

    background:#081F4D;

    color:#fff;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:768px){

    .careers-hero h1{

        font-size:2.2rem;

    }

}