/* Search News */
#searchNews {
    margin-top: 4.8rem;
    margin-bottom: 30px;
    padding: 20px 0;
    background-color: var(--primary);
}

.search-form {
    border-radius: 25px;
    border: 0;
    height: 40px;
    padding: 0 20px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    width: 100% !important;
    transition: all 300ms ease;
    font-weight: 300;
}

.search-form::placeholder {
    color: var(--white);
}

.search-btn {
    position: absolute;
    right: 0;
    border-radius: 25px;
    height: 40px;
    padding: 0 35px;
    background-color: #fff;
    transition: all 300ms ease;
    color: var(--primary);
    letter-spacing: 1px;
    font-weight: 500;
    top: 0;
    border: 1px solid white;
    font-size: 16px !important;
}
/* Search News End */

/* Article 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 Article Detail */

/* Related */
.related-card {
    margin-bottom: 32px;
    -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;
    background: #fff;
}

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

.related-card img {
    width: 100%;
    height: 109px;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 12px;
}

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

.related-card:hover img {
    opacity: .8;
}

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

.related-title {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    margin-bottom: 30px;
}

.related-title::before {
    content: ' ';
    position: absolute;
    border-bottom: 4px solid var(--accent);
    width: 40%;
    bottom: -10px;
}
/* End Related */

/* News Article */
.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;
    }

}
