.lnl-item {
    display: flex;
    justify-content: space-between; /* فاصله عنوان و زمان */
    align-items: center;
    padding: 5px 0;
}

/* عنوان خبر */
.lnl-title {
    font-weight: bold;
    color: #000;
    text-decoration: none;
    text-align: right; /* عنوان سمت راست */
}

/* زمان انتشار */
.lnl-time {
    font-size: 12px;
    color: #777;
    text-align: left; /* زمان سمت چپ */
}

/* موبایل */
@media (max-width: 768px) {
    .lnl-item {
        flex-direction: column;
        align-items: flex-start; /* موبایل زیر هم */
    }
    .lnl-title {
        text-align: right;
        margin-top: 3px;
    }
    .lnl-time {
        text-align: left;
    }
}



/* خبر جدید - بک گرند زرد با فید */
#lnl-news-list li.lnl-new {
    background-color: #fff3b0;
    animation: lnlFadeBg 1s ease-in-out forwards;
}

@keyframes lnlFadeBg {
    0% {
        background-color: #fff3b0;
    }
    100% {
        background-color: transparent;
    }
}


/* جلوگیری از مخفی شدن توسط قالب */
#lnl-news-wrapper,
#lnl-news-wrapper * {
    overflow: visible !important;
}

#lnl-news-wrapper {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    overflow: visible !important;
}

/* لودینگ – فیکس قطعی */
.lnl-loading {
    display: block !important;
    text-align: center;
    margin: 15px 0;
    position: relative;
    z-index: 9999;
}

.lnl-loading img {
    display: inline-block !important;
    width: 32px;
    height: 32px;
    max-width: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* لیست اخبار */
#lnl-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#lnl-news-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#lnl-news-list li a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

#lnl-news-list li span {
    font-size: 12px;
    color: #777;
}

@media (max-width: 768px) {
    #lnl-news-list li {
        font-size: 14px;
    }
}

#lnl-news-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* خبرهای یک در میون */
#lnl-news-list li:nth-child(odd) {
    background-color: #f5f5f5; /* خاکستری روشن */
}

#lnl-news-list li:nth-child(even) {
    background-color: #ffffff; /* سفید */
}

/* افکت خبر جدید */
#lnl-news-list li.lnl-new {
    background-color: #fff3b0 !important;
    animation: lnlFadeBg 1s ease-in-out forwards;
}
#lnl-news-list li.odd { background-color: #f5f5f5; }
#lnl-news-list li.even { background-color: #ffffff; }

























