/* @main news */
.news-detail .main-banner div {
    top: 0;
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
}
.news-detail .main-news .top-wrap .main-title {
    font-weight: bold;
    margin-bottom: 25px;
}
.news-detail .main-news .top-wrap .date {
    font-size: 14px;
    margin-bottom: 15px;
}
.news-detail .main-news .bottom-wrap img {
    border-radius: 5px;
}
.news-detail .main-news .description {
    font-size: 18px;
    line-height: 1.8;
    padding: 25px 0;
}
.news-detail .main-news .thumbnail img ,
.news-detail .main-news .description img ,
.news-detail .main-news .description iframe ,
.news-detail .main-news .description video {
    width: 100% !important;
}
.news-detail .main-news .wrap-share {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: flex-end;
}
.news-detail .main-news .wrap-share p {
    margin: 0;
    font-size: 12px;
    margin-right: 20px;
}
.news-detail .main-news .wrap-share img {
    margin-right: 10px;
}
.news-detail .main-news .wrap-next-prev {
    display: flex;
    justify-content: space-between;
}
.news-detail .main-news .wrap-next-prev .prev ,
.news-detail .main-news .wrap-next-prev .next {
    width: 50%;
}
.news-detail .main-news .wrap-next-prev .prev a {
    padding: 15px 35px;
    border-radius: 31px;
    color: var(--black-color);
    background-color: var(--gray-color);
}
.news-detail .main-news .wrap-next-prev .next a {
    padding: 15px 35px;
    border-radius: 31px;
    color: var(--white-color);
    background-color: var(--green-color);
}
.news-detail .main-news .wrap-next-prev .prev .title ,
.news-detail .main-news .wrap-next-prev .next .title {
    font-size: 18px;
    margin-top: 25px;
    font-weight: bold;
    color: var(--blue-color);
}
.news-detail .main-news .wrap-next-prev .url {
    display: flex;
} 
.news-detail .main-news .wrap-next-prev .next .url {
    justify-content: flex-end;
} 
.news-detail .main-news .wrap-next-prev .next .description {
    text-align: right;
}

/* @Latest News  */
.news-detail .latest-news {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--dark-gray-color);
}
.news-detail .latest-news .main-title {
    font-weight: bold;
}
.news-detail .latest-news figure {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}
.news-detail .latest-news .col-12:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-gray-color);
}
.news-detail .latest-news figure .detail {
    padding-left: 15px;
}
.news-detail .latest-news figure img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}
.news-detail .latest-news figure .detail .title {
    font-size: 16px;
    color: var(--black-color);
}
.news-detail .latest-news figure .detail .date {
    font-size: 12px;
    color: var(--black-color);
}

/* @relate news */
.news-detail .relate-news .main-title {
    font-weight: bold;
    margin-bottom: 20px;
}
.news-detail .relate-news .thumbnail {
    position: relative;
}
.news-detail .relate-news .thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}
.news-detail .relate-news .detail {
    bottom: 0;
    padding: 20px;
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}
.news-detail .relate-news .title {
    font-weight: bold;
}
.news-detail .relate-news .title ,
.news-detail .relate-news .date {
    color: var(--white-color);
}

/* ================== Responsive on device =================== */

/* @mac book */
@media (width: 1336px) {}

/* Desktop */
@media(max-width: 1440px) {
}

/* Laptop */
@media(max-width: 1280px) {
}

/* iPad */
@media(max-width: 769px) {
    .news-detail .news-data .col-4 ,
    .news-detail .news-data .col-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .news-detail .main-news .top-wrap .main-title {
        margin: 25px 0px;
    }
    .news-detail .latest-news figure {
        justify-content: flex-start;
    }
    .news-detail .latest-news figure .detail {
        padding: 15px;
    }
    .news-detail .latest-news {
        margin-top: 30px;
    }
    .news-detail .relate-news .col-4 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

  /* Mobile */
@media(max-width: 576px) {
    .news-detail section:first-child {
        margin: 0px !important;
    }
    .news-detail .main-news .description {
        font-size: 16px;
    }
    .news-detail .main-news .wrap-next-prev .next a {
        padding: 15px 25px;
    }
    .news-detail .main-news .wrap-next-prev .prev .title, 
    .news-detail .main-news .wrap-next-prev .next .title {
        font-size: 16px;
    }
    .news-detail .latest-news figure .detail {
        padding: 0 15px;
    }
    .news-detail .relate-news .col-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}