.news-page-header{
    text-align: center;
    width:100%;
    max-width: 1160px;
    margin: auto;
}

.news-header-avatar,
.news-header-title{
    display: inline-block;
    vertical-align: middle;
}

.news-header-title{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 20px;
}

/* .news-list-wrapper{
    display: flex;
    width: 100%;
    max-width: 1160px;
    margin: 90px auto 0 auto;
    gap: 50px;
}

.news-list-wrapper .col{
    flex: 1;
} */


.news-list-wrapper{
    width: 100%;
    max-width: 1280px;
    margin: 70px auto 0 auto;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: 250px;
    /* background: #f4f4f4; */
    padding: 15px;
    /* border-radius: 5px; */
}

.column h2 {
    margin-bottom: 15px;
    color: #333;
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 7px;
}

.link {
    display: block;
    color: #0066cc;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* padding: 5px; */
    /* border-radius: 3px; */
    /* transition: background 0.3s; */
}

.link:hover {
    color: #2f7ecd;
}

.tooltip {
    position: absolute;
    max-width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    pointer-events: none;
    display: none;
}

.tooltip h3 {
    margin-bottom: 5px;
    color: #333;
}

.tooltip .subtitle {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 8px;
}

.tooltip .content {
    font-size: 0.9em;
    color: #444;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .column {
        min-width: 100%;
    }
}