.news-list {
    font-family: 'Vazir', sans-serif;
}

.news-list-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.news-list-item h3 {
    font-size: 18px;
    margin: 0 0 5px;
}

.news-list-item h3 a {
    color: #0073aa;
    text-decoration: none;
}

.news-list-item h3 a:hover {
    text-decoration: underline;
}

.news-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-family: 'Vazir', sans-serif;
}

.news-popup-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.news-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.news-popup-body {
    font-size: 14px;
    color: #555;
    margin: 0;
    padding-top: 30px; /* فاصله از علامت × */
    white-space: pre-wrap; /* حفظ فاصله‌ها و پاراگراف‌ها */
}