.news-section {
    font-family: 'Segoe UI', sans-serif;
    max-width: 700px;
    width: 95%;
    margin: 20px auto;
    padding: 25px;
    line-height: 1.7;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.news-section h1 {
    font-size: 20px;
    margin-bottom: 5px;
}
.highlight-box {
    background-color: #e9ecef;
    color: #495057;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 6px;
    border-left: 5px solid #007bff;
}

.highlight-icon {
    font-weight: bold;
    margin-right: 8px;
    color: #007bff;
}

.news-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.news-list li a {
    display: block;
    text-decoration: none;
    color: blue;
    padding: 5px;
    border-left: 3px solid transparent;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out, border-left-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.news-list li a:hover {
    background-color: #e9f2ff;
    border-left-color: #007bff;
    color: #007bff;
}

.small {
    font-size: 0.8em;
    color: blue;
    margin-left: 5px;
}

.emphasize {
    color: #dc3545;
    font-weight: bold;
    margin-right: 5px;
}

.important-info {
    background-color: #fff;
    padding: 18px;
    border: 1px solid #ced4da;
    border-radius: 6px;
}
.past-news {
    margin-top: 50px;
}
.past-news a {
    display: block;
    padding: 5px 12px;
    color: #2f23dc;
    transition:  0.2s ease, color 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
}
.past-news a:hover {
    color:#007bff
}