.news-list-wrap { 
  margin-top: 10px; 
}

.news-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  align-items: stretch;
  min-height: 160px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center center;
}

.news-cover {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}

.news-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-author {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.95;
  margin-bottom: 5px;
  word-break: break-all;
}

.news-summary {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-time {
  margin-top: auto;
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
  color: var(--primary);
}

.news-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.news-link:hover .news-title {
  color: var(--accent);
}

.news-link:hover .news-item {
  transform: scale(1.005);
}

.news-loading {
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center; 
  gap:10px;
}

.loadText {
  margin:0; 
  font-size:1rem; 
  color:var(--text); 
  opacity:0.9;
  text-align:center;
  font-weight: 600;
}

.news-empty {
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .news-item {
    grid-template-columns: 1fr;
  }
  .news-cover {
    max-height: 220px;
  }
  .news-time {
    margin-top: 8px;
  }
}