/*====================================================
                    CAREERS
====================================================*/

.career-section{
    padding:8px 0 35px;
    background:#f7fbff;
}

.career-subtitle{
    color:#6c7a8d;
    font-size:.88rem;
    line-height:1.55;
    margin-bottom:14px;
}

/*-----------------------------------
            CARD
-----------------------------------*/

.career-card{
    background:#fff;
    border:1px solid #e5edf8;
    border-radius:12px;
    padding:16px 18px;
    box-shadow:0 4px 14px rgba(4,55,105,.08);
}

/*-----------------------------------
        CAREER ITEM
-----------------------------------*/

.career-item{
    display:flex;
    gap:14px;
    padding:12px 0;
    border-bottom:1px solid #edf2f8;
}

.career-item:last-child{
    border-bottom:none;
}

/*-----------------------------------
            ICON
-----------------------------------*/

.career-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#043769;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:14px;
}

/*-----------------------------------
            CONTENT
-----------------------------------*/

.career-content h4{
    margin:0 0 5px;
    font-size:1rem;
    font-weight:700;
    line-height:1.35;
}

.career-content h4 a{
    color:#043769;
    text-decoration:none;
    transition:.25s;
}

.career-content h4 a:hover{
    color:#3A8AB5;
}

.career-content p{
    color:#5f6f86;
    font-size:.86rem;
    line-height:1.6;
    margin:0;
}

/*-----------------------------------
        APPLY CARD
-----------------------------------*/

.career-apply{
    margin-top:16px;
    background:#fff;
    border-left:4px solid #043769;
    border-radius:12px;
    padding:16px 18px;
    box-shadow:0 4px 14px rgba(4,55,105,.08);
}

.career-apply h4{
    color:#043769;
    font-size:1.05rem;
    font-weight:700;
    margin-bottom:8px;
}

.career-apply p{
    color:#5f6f86;
    font-size:.86rem;
    line-height:1.6;
    margin-bottom:8px;
}

.career-apply a{
    color:#0d5ea8;
    text-decoration:none;
    font-weight:600;
}

.career-apply a:hover{
    text-decoration:underline;
}

/*====================================================
            CAREER DETAILS PAGE
====================================================*/

.career-details-section{
    padding:20px 0 45px;
    background:#f7fbff;
}

.btn-career-back{
    padding:8px 18px;
    font-size:.85rem;
    margin-bottom:18px;
}

.career-details-card{
    background:#fff;
    border:1px solid #e5edf8;
    border-radius:14px;
    padding:24px 28px;
    box-shadow:0 6px 18px rgba(4,55,105,.08);
}

.career-page-title{
    color:#043769;
    font-size:1.75rem;
    font-weight:700;
    margin-bottom:8px;
}

.career-details-card hr{
    width:70px;
    height:3px;
    background:#0d5ea8;
    border:none;
    opacity:1;
    margin:0 0 18px;
}

.career-details-card p{
    color:#5f6f86;
    font-size:.9rem;
    line-height:1.7;
    text-align:justify;
    margin-bottom:12px;
}

.career-subheading{
    color:#043769;
    font-size:1.15rem;
    font-weight:700;
    margin:20px 0 12px;
}

/*-----------------------------------
            RESPONSIBILITY LIST
-----------------------------------*/

.career-list{
    list-style:disc !important;
    padding-left:22px;
    margin:0 0 20px;
}

.career-list li{
    display:list-item !important;
    list-style:disc !important;
    color:#5f6f86;
    font-size:.88rem;
    line-height:1.6;
    margin-bottom:6px;
    padding-left:2px;
}

/*-----------------------------------
            NOTE
-----------------------------------*/

.career-note{
    margin-top:18px;
    background:#eef6ff;
    border-left:4px solid #043769;
    border-radius:10px;
    padding:18px;
}

.career-note h4{
    color:#043769;
    font-size:1.05rem;
    font-weight:700;
    margin-bottom:8px;
}

.career-note p{
    font-size:.88rem;
    line-height:1.6;
    margin-bottom:8px;
}

.career-note a{
    color:#0d5ea8;
    font-weight:600;
    text-decoration:none;
}

.career-note a:hover{
    text-decoration:underline;
}

/*====================================================
                    MOBILE
====================================================*/

@media (max-width:768px){

    .career-card,
    .career-details-card,
    .career-note,
    .career-apply{
        padding:16px;
    }

    .career-item{
        flex-direction:column;
        gap:8px;
        padding:10px 0;
    }

    .career-icon{
        width:34px;
        height:34px;
        font-size:13px;
    }

    .career-page-title{
        font-size:1.45rem;
    }

    .career-subheading{
        font-size:1.05rem;
    }

    .career-content h4{
        font-size:.95rem;
    }

    .career-content p,
    .career-details-card p,
    .career-list li,
    .career-note p{
        font-size:.84rem;
    }

}