/* news.css */
.news-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s ease;
}

.news-title {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-color);
  margin: 0;
  text-align: left;
}

.news-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 8px 0;
}

.news-link:hover {
  background-color: var(--background-light);
  text-decoration: underline;
}

#news-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

#news-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

#news-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.list-group-item {
  padding: 0;
  border: none;
}

