/*------------------------------
  ------------------------------News / Posts Page (home.php)
------------------------------*/

.news-archive .archive-header {
  /*
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 2rem;
*/
}

.news-archive .archive-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
  color: #111;
}

.news-archive .archive-description {
  /*
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
*/
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.post-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 3rem;
  position: relative;
}

.post-thumb img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.post-details {
  flex: 1;
  min-width: 200px;
}

.post-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.post-title a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #0055aa;
}

.post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #0055aa;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination {
  margin-top: 5rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 0.35rem;
  padding: 0.5rem 0.75rem;
  background: #f4f4f4;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.pagination .page-numbers.current {
  background: #111;
  color: #fff;
  font-weight: bold;
}

.pagination .page-numbers:hover {
  background: #ccc;
}