/* ===================================================
   News Feature Panel Pro
===================================================*/

.nfsp-wrapper{
   display:flex;

    align-items:stretch;

    justify-content:space-between;

    width:100%;

    gap:20px;

    box-sizing:border-box;
}

/*==========================
LEFT PANEL
==========================*/

.nfsp-left{

    flex:0 0 35%;

    max-width:35%;

    overflow-y:auto;

    height:550px;

    border:1px solid #ddd;

    background:#fff;

    box-sizing:border-box;


}

/* Scrollbar */

.nfsp-left::-webkit-scrollbar{

    width:8px;

}

.nfsp-left::-webkit-scrollbar-track{

    background:#f5f5f5;

}

.nfsp-left::-webkit-scrollbar-thumb{

    background:#b5b5b5;

    border-radius:20px;

}

.nfsp-left::-webkit-scrollbar-thumb:hover{

    background:#888;

}

/*==========================
NEWS LIST
==========================*/

.nfsp-news-list{

    margin:0;

    padding:0;

    list-style:none;

}

.nfsp-news-list li{

    display:flex;

    padding:15px;

    border-bottom:1px solid #ececec;

    transition:.25s;

}

.nfsp-news-list li:hover{

    background:#fafafa;

}

.nfsp-news-list li.active{

    border-left:4px solid #d40000;

    background:#fff8f8;

}

body.rtl .nfsp-news-list li.active{

    border-left:none;

    border-right:4px solid #d40000;

}

/*==========================
DATE
==========================*/

.nfsp-date{

    width:78px;

    flex-shrink:0;

    text-align:center;

    margin-right:15px;

}

body.rtl .nfsp-date{

    margin-right:0;

    margin-left:15px;

}

.nfsp-date .date{

    display:block;

    font-size:13px;

    font-weight:bold;

    color:#666;

}

.nfsp-date .time{

    display:block;

    margin-top:5px;

    font-size:12px;

    color:#999;

}

/*==========================
TITLE
==========================*/

.nfsp-title{

    flex:1;

}

.nfsp-title a{

    color:#222;

    text-decoration:none;

    font-size:17px;

    line-height:1.6;

    font-weight:600;

}

.nfsp-title a:hover{

    color:#d40000;

}

/*==========================
RIGHT PANEL
==========================*/

.nfsp-right{

    flex:0 0 65%;

    max-width:65%;

    border:1px solid #ddd;

    background:#fff;

    box-sizing:border-box;

    display:flex;

    flex-direction:column;

}

.nfsp-right img{

     width:100%;

    height:360px;

    object-fit:cover;

    display:block;

}

/*==========================
CONTENT
==========================*/

.nfsp-right{

    position:relative;

    overflow:hidden;

}

.nfsp-right img{

    width:100%;

    height:550px;

    object-fit:cover;

    display:block;

}

.nfsp-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:30px;

    color:#fff;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.55),
        transparent
    );

}

.nfsp-category{

    display:inline-block;

    background:#d50000;

    color:#fff;

    padding:6px 12px;

    border-radius:3px;

    font-size:12px;

    margin-bottom:15px;

    font-weight:bold;

}

.nfsp-overlay h2{

    margin:0 0 15px;

    line-height:1.4;

}

.nfsp-overlay h2 a{

    color:#fff;

    text-decoration:none;

    font-size:32px;

    font-weight:700;

}

.nfsp-overlay p{

    color:#eee;

    line-height:1.8;

    margin:0 0 20px;

}

.nfsp-readmore{

    display:inline-block;

    background:#d50000;

    color:#fff;

    padding:10px 18px;

    text-decoration:none;

    border-radius:3px;

}

.nfsp-readmore:hover{

    background:#b00000;

    color:#fff;

}

/*==========================
RTL
==========================*/

body.rtl .nfsp-wrapper{

    direction:rtl;

}

body.rtl .nfsp-left{

    border-right:none;

    border-left:1px solid #ddd;

}

body.rtl .nfsp-content{

    text-align:right;

}

/*==========================
TABLET
==========================*/

@media(max-width:992px){

.nfsp-content h2 a{

    font-size:24px;

}

}

/*==========================
MOBILE
==========================*/

@media(max-width:768px){

.nfsp-wrapper{

    display:block;

}

.nfsp-left{

    width:100%;

    max-height:350px;

    border:none;

}

.nfsp-right{

    width:100%;

}

.nfsp-right img{

    height:250px;

}

.nfsp-content{

    padding:18px;

}

.nfsp-content h2 a{

    font-size:22px;

}

.nfsp-title a{

    font-size:15px;

}

.nfsp-date{

    width:65px;

}

}