.news-container {
  max-width: 1100px;
  border-radius: 5px;
  padding: 120px 30px 80px;
  margin: auto;
}
.news-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
}
.news-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.5rem;
}
.news-title a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
.news-title a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.news-date {
  color: #95a5a6;
  font-size: 14px;
  margin-bottom: 15px;
}
.news-content {
  margin-bottom: 15px;
}
.read-more {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}
.read-more:hover {
  text-decoration: underline;
}
