.page-header {
    padding-bottom: 32px;
}

/* Career Detail */
.detail-card {
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.detail-card .card-body {
    padding: 30px;
}

.detail-card img {
    width: 100%;
    height: 377px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}
/* End Career Detail */


/* News Career */
.news-card {
    background: #fff;
    border-radius: 12px;
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 15%);
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    margin-bottom: 32px;
}

.news-card .card-header {
    background: #033A71;
    color: #fff !important;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding: 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    letter-spacing: 1px;
    display: block;
}

.news-card .card-body {
    padding: 16px;
}

.news-card img {
    width: 134px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
}

.news-card h3 {
    transition: var(--transition);
}

.news-card li:hover img {
    opacity: .8;
}

.news-card li:hover h3 {
    color: var(--secondary);
}

.news-card li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.news-card li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
/* End News Article */


@media (max-width: 997.98px) {

    .detail-card img {
        height: auto;
    }

}
