.news-list {
  padding: 2rem 0;
  width: 80%;
  margin: 1rem auto;
}
.news-list h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.news-list ul {
  list-style: none;
  padding: 0;
}
.news-list li {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.news-list li time {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.news-list li a {
  text-decoration: none;
  color: #337ab7;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.news-list li a:hover {
  text-decoration: underline;
}
.news-list li p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* News Detail Page Specifics */
.news-detail {
  padding: 2rem 0;
  width: 70%;
  margin: 1rem auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-detail h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.news-detail time {
  display: block;
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.5rem;
}
.news-detail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news-detail p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #555;
}
