.news-archive {
    max-width: 700px;
    margin: auto;
  }
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .news-item {
    background: #222;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  .news
  -item:hover {
  background-color: #333;
  }
  .news-item h3 {
  color: #4db8ff;
  margin-bottom: 0.5rem;
  }
  .news-item time {
  font-size: 0.9rem;
  color: #aaa;
  }