.news-portal {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
}

.news-list-wrap {
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.news-list-head {
    padding: 18px 20px 14px;
    background: linear-gradient(90deg, #27918d 0%, #2ca7df 100%);
    color: #fff;
}

.news-list-head h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.news-list-head p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    padding: 16px 20px;
    margin: 0;
}

.news-item {
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.news-link {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
}

.news-date {
    display: block;
    font-size: 12px;
    color: #6b7a90;
    margin-bottom: 8px;
}

.news-title {
    display: block;
    font-size: 15px;
    color: #1f2b44;
    line-height: 1.5;
}

.news-link:hover .news-title {
    color: #27918d;
}

@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}