.news-page { padding: 2rem 0 3rem; }
.news-page .news-card {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.25s;
}
.news-page .news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.news-page .news-card .pic { height: 200px; overflow: hidden; }
.news-page .news-card .pic img { width: 100%; height: 100%; object-fit: cover; }
.news-page .news-card .text { padding: 1.25rem; }
.news-page .news-card .text h2 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-page .news-card em { font-size: 0.85rem; color: #888; }
.news-page .news-card .text-Features { margin: 0.5rem 0; font-size: 0.95rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-page .news-card span { color: var(--primary-color); font-size: 0.9rem; }

/* Pagination */
.news-page .pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.news-page .pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.news-page .pagination a, 
.news-page .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.news-page .pagination a:hover, 
.news-page .pagination span.current {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.news-page .pagination .dots {
  border: none;
}

/* Single Post Content */
.entry-content {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.8;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}
.entry-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.entry-content table td, .entry-content table th {
  padding: 0.5rem;
  border: 1px solid #dee2e6;
}
