#archive-news {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
}

.archive-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  border-left: 4px solid #333;
  padding-left: 20px;
  position: relative;
}

.news-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 50%;
}

.news-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  transition: 0.3s;
}

.news-item a {
  text-decoration: none;
}

.news-item a:hover .news-title {
  color: #007acc;
}

.pagination {
  margin-top: 50px;
  text-align: center;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.pagination a:hover {
  background-color: #007acc;
  color: #fff;
  border-color: #007acc;
}