.itgj-wrapper{
    width:100%;
    margin:30px auto;
}

.itgj-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.itgj-tab{
    background:#f5f5f5;
    border:1px solid #ddd;
    padding:12px 22px;
    cursor:pointer;
    border-radius:6px;
    font-size:15px;
    transition:.3s;
}

.itgj-tab:hover{
    background:#2563eb;
    color:#fff;
}

.itgj-tab.active{
    background:#2563eb;
    color:#fff;
}

.itgj-loading{
    text-align:center;
    padding:30px;
    font-size:18px;
}

.itgj-job-list{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:20px;
}

.itgj-job-card{
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    transition:.25s;
}

.itgj-job-card:hover{
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

.itgj-job-link{
    color:inherit;
    text-decoration:none;
    display:block;
}

.itgj-job-image img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.itgj-job-content{
    padding:16px;
}

.itgj-job-title{
    margin:0 0 10px;
    font-size:18px;
}

.itgj-job-date{
    color:#666;
    font-size:13px;
    margin-bottom:10px;
}

.itgj-job-excerpt{
    line-height:1.6;
    color:#444;
}

.itgj-no-jobs{
    text-align:center;
    padding:40px;
}

@media(max-width:768px){

.itgj-tabs{
overflow:auto;
white-space:nowrap;
flex-wrap:nowrap;
}

.itgj-tab{
flex:0 0 auto;
}

.itgj-job-list{
grid-template-columns:1fr;
}

}
.itgj-read-time{
    background:#f5f5f5;
    border-left:4px solid #0073aa;
    padding:10px 15px;
    margin-bottom:20px;
    font-size:15px;
    border-radius:4px;
}
.itgj-apply-box{
    margin-top:30px;
    padding:20px;
    background:#eef8ff;
    border-left:5px solid #0073aa;
    border-radius:5px;
}

.itgj-apply-box h3{
    margin-top:0;
}

.itgj-apply-box ul{
    margin-left:20px;
}

/*==========================================================
SEARCH BAR
==========================================================*/

.itgj-search{

    position:relative;

    width:100%;

    max-width:520px;

    margin:0 auto 45px;

    display:block;

}

#itgj-search-input{

    width:100%;

    display:block;

    box-sizing:border-box;

    height:56px;

    border:1px solid #dbe4ee;

    border-radius:14px;

    padding:0 45px 0 18px;

    font-size:16px;

    font-weight:500;

    outline:none;

    background:#fff;

    transition:.3s;

    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

#itgj-search-input::placeholder{

    color:#94a3b8;

}

#itgj-search-input:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}



/*==========================================================
TABS
==========================================================*/

.itgj-tabs{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:28px;

}

.itgj-tab{

    border-radius:10px !important;

    transition:.25s;

}

.itgj-tab:hover{

    transform:translateY(-2px);

}

/*==========================================================
LOADING
==========================================================*/

.itgj-loading{

    padding:40px;

    text-align:center;

    font-size:18px;

    color:#2563eb;

}

/*==========================================================
NO RESULTS
==========================================================*/

.itgj-no-jobs{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:45px;

    text-align:center;

    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

.itgj-no-jobs h3{

    margin-bottom:10px;

}

.itgj-no-jobs p{

    color:#64748b;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:768px){

.itgj-tabs{

gap:10px;

}

#itgj-search-input{

height:52px;

font-size:15px;

}

}
#itgj-search-clear{

    position:absolute;

    right:14px;

    top:28px;

    transform:translateY(-50%);

    width:22px;

    height:22px;

    line-height:22px;

    text-align:center;

    border-radius:50%;

    cursor:pointer;

    display:none;

    z-index:999;

    color:#64748b;

    background:#eef2f7;

    font-size:14px;

}

#itgj-search-clear:hover{

    background:#e2e8f0;

    color:#2563eb;

}

/*==========================================================
SEARCH RESULT COUNT
==========================================================*/

.itgj-search-meta{

    margin-bottom:18px;

    font-size:15px;

    color:#475569;

    font-weight:500;

}

.itgj-search-meta strong{

    color:#2563eb;

}

/*==========================================================
LOAD MORE
==========================================================*/

.itgj-load-more-wrap{

    margin:35px 0;

    text-align:center;

    width:100%;

    grid-column:1 / -1;

}

#itgj-load-more{

    display:inline-block;

    background:#2563eb;

    color:#fff;

    border:none;

    border-radius:10px;

    padding:14px 30px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 4px 12px rgba(37,99,235,.25);

}

#itgj-load-more:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(37,99,235,.35);

}

#itgj-load-more:disabled{

    opacity:.65;

    cursor:not-allowed;

    transform:none;

}

#itgj-load-more:hover{

    background:#1d4ed8;

}

#itgj-load-more:disabled{

    opacity:.6;

    cursor:not-allowed;

}