body { background: #f5f7fa; }
.news-list { max-width: 980px; margin: 60px auto 0; padding: 0 16px; }
.news-item {
    background: #fff;
    border-radius: 12px;
    margin:0 1rem 32px 1rem;
    padding: 32px 32px 24px 32px;
    box-shadow: 0 4px 24px #0001;
    transition: box-shadow 0.2s;
    border-left: 6px solid #2cacd1;
}
.news-item:hover { box-shadow: 0 8px 32px #2cacd133; }
.news-title {
    font-size: 1.35rem;
    color: #0066a1;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.news-content {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.8;
}
.news-empty {
    text-align: center;
    color: #aaa;
    margin: 48px 0;
    font-size: 1.1rem;
}
@media (max-width: 700px) {
    .news-list { padding: 0 4px; }
    .news-item { padding: 18px 10px 14px 14px; }
    .news-title { font-size: 1.1rem; }
    .news-content { font-size: 0.98rem; }
}
.news-img {
    display: block;
    margin: 18px auto 18px auto;
    max-width: 90%;
    max-height: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 12px #0001;
    background: #f5f7fa;
    transition: transform 0.65s;
}
.news-img:hover {
    transform: scale(1.15); 
}