.nf-content{
    display: grid;
    grid-template-columns: 66.6% 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.nf-content .news-item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.nf-content .news-item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.nf-content .news-item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.news-item{
    position: relative;
}
.news-item__title{
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 100%;
}
.news-item__date{
    display: inline-block;
    font-size: 12px;
}
.nl-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.content-detail{
    color: white!important;
}
.content-detail p, .content-detail span{
    color: white!important;
}
.content-detail{
    font-size: 14px;
}
.content-detail img{
    max-width: 100%!important;
    height: auto!important;
}
.content-detail iframe{
    max-width: 100%!important;
}
.content-detail blockquote {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}
.content-detail blockquote {
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    padding: 2px 0;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
}
.content-detail blockquote {
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px;
    clear: both;
}

.content-detail ol ol {
    margin-block-start: 0px;
    margin-block-end: 0px;
}
.content-detail ol,.content-detail ul,.content-detail dl {
    margin-right: 0px;
    padding: 0 40px;
}
.content-detail ol li{
    list-style: decimal;
}
.content-detail ul li{
    list-style: disc;
}
.md-menu-bottom{
    display: none!important;
}
@media only screen and (max-width: 1250px) {
}
@media only screen and (max-width: 992px) {
}
@media only screen and (max-width: 768px) {
    .nf-content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 15px;
        grid-row-gap: 10px;
    }
    .nf-content .news-item:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
    .nf-content .news-item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
    .nf-content .news-item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
    .news-item__title{
        font-size: 14px;
    }

}
/*Mobile*/
@media only screen and (max-width: 500px) {
    .nl-content {
        grid-template-columns: repeat(1, 1fr);
    }
    .news-item__title{
        font-size: 12px;
    }
    .news-item__date{
        font-size: 10px;
    }
}