/* ===================================================== */
/* ПЕРЕОПРЕДЕЛЕНИЕ СТИЛЕЙ ТЕМЫ NEWSPAPER */
/* ===================================================== */

.na-news-list{
    display:block !important;
}

.na-news-item{
    display:flex !important;
    width:100%;
}

/* ===================================================== */
/* КОНТЕЙНЕР */
/* ===================================================== */

.na-container{
    display:block !important;
    max-width:900px;
    margin:0 auto;
    width:100%;
}

/* ===================================================== */
/* ВЕРХНЯЯ ПАНЕЛЬ */
/* ===================================================== */

.na-topbar{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.na-left{
    display:flex;
    gap:15px;
}

.na-search{
    flex:1;
}

.na-search input{
    width:100%;
}

.na-favorites{
    width:80px;
    text-align:right;
    font-size:16px;
}


/* ===================================================== */
/* СПИСОК НОВОСТЕЙ */
/* ===================================================== */

.na-news-list{
    width:100%;
}



/* ===================================================== */
/* КАРТОЧКА НОВОСТИ */
/* ===================================================== */

.na-news-item{
    display:flex;
    flex-direction:row;
    align-items:flex-start;
    gap:15px;
    padding:15px 0;
    width:100%;
}



/* ===================================================== */
/* КАРТИНКА */
/* ===================================================== */

.na-image{
    flex:0 0 250px;
}

.na-image img{
    width:250px;
    height:140px;
    object-fit:cover;
}



/* ===================================================== */
/* КОНТЕНТ */
/* ===================================================== */

.na-content{
    flex:1;
    min-width:400px;
}



/* ===================================================== */
/* ЗАГОЛОВОК */
/* ===================================================== */

.na-title{
    font-size:15px;
    font-weight:600;
    color:#0064b2;
    cursor:pointer;
    margin-bottom:5px;
    line-height:1.4;
}



/* ===================================================== */
/* META */
/* ===================================================== */

.na-meta{
    font-size:12px;
    color:#777;
    margin-bottom:5px;
}



/* ===================================================== */
/* ИСТОЧНИКИ */
/* ===================================================== */

.na-sources{
    font-size:14px;
    color:#0064b2;
    cursor:pointer;
}



/* ===================================================== */
/* ИЗБРАННОЕ */
/* ===================================================== */

.na-like{
    width:60px;
    text-align:right;
}



/* ===================================================== */
/* РАСКРЫТИЕ */
/* ===================================================== */

.na-expand{
    padding:10px 0 20px 265px;
    border-bottom:1px solid #e6e6e6;
    margin-bottom:10px;
}


/* ===================================================== */
/* ОПИСАНИЕ */
/* ===================================================== */

.na-description{
    font-size:14px;
    margin-bottom:10px;
}



/* ===================================================== */
/* СПИСОК ИСТОЧНИКОВ */
/* ===================================================== */

.na-sources-list a{
    color:#0064b2;
    font-size:14px;
    text-decoration:none;
}


/* ===================================================== */
/* ПОДСВЕТКА ИЗБРАННОЕ */
/* ===================================================== */

.na-like{
    cursor:pointer;
    opacity:0.5;
}

.na-like.active{
    color:#e60023;
    opacity:1;
}

.na-like{
    cursor:pointer;
    user-select:none;
}

.na-like.active{
    color:#e60023;
    transform:scale(1.1);
    transition:0.15s;
}


/* ===================================================== */
/* ОЧИСТКА ИЗБРАННОГО */
/* ===================================================== */

.na-favorites{
    display:flex;
    align-items:center;
    gap:6px;
}

#na-favorites-clear{
    cursor:pointer;
    opacity:0.5;
    font-size:14px;
}

#na-favorites-clear:hover{
    opacity:1;
    color:#d00;
}


/* Крестик на странице ИЗБРАННОГО */

.na-favorites-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.na-favorites-clear{
    cursor:pointer;
    font-size:18px;
    opacity:0.5;
}

.na-favorites-clear:hover{
    opacity:1;
    color:#d00;
}


/* В ИЗБРАННОМ КНОПКА НАЗАД */
.na-back-news{
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
    text-decoration:none;
    color:#555;
}

.na-back-news:hover{
    text-decoration:underline;
}


/* POPUP ФИЛЬТРА ИСТОЧНИКОВ */

.na-sources-popup{
    display:none;
    position:absolute;
    top:40px;
    left:0;
    width:220px;
    background:#fff;
    border:1px solid #ddd;
    padding:10px;
    z-index:9999;
}

.na-sources-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

#na-sources-list label{
    display:block;
    margin-bottom:6px;
    cursor:pointer;
}


/* контейнер фильтра Источников */

.na-filtered .na-news-item{
    display:none;
}

/* конкретный источник показываем */

.na-filtered .na-src-active{
    display:flex !important;
}