.news-section {
    position: relative;
    padding-block: 10px;
}
.news-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.title-circle-main {
    position: relative;
    top: 0;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.news-list-div {
    padding-inline-start: 22px;
}
ul.news-list {
    margin: 0;
    list-style: none;
    padding-inline-start: 16px;
    border-inline-start: 2px solid #ce0808;
    position: relative;
}
.news-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    line-height: 23px;
}
.news-item::before {
    content: '';
    position: absolute;
    inset-inline-start: -10px;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: blink 1s infinite;
}
.news-item p {
    padding-inline-start: 10px;
}
.news-item a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
.news-item a:hover {
    text-decoration: underline;
}
@media (max-width: 445px) {
    .news-item::before {
        top: 20%;
    }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}