/* ===== NEWS GRID ===== */
.news-grid-scope #news-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-grid-scope #news-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px){
  .news-grid-scope #news-grid-container {
    grid-template-columns: 1fr;
  }
}

.news-grid-scope .news-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease-in-out;
}
.news-grid-scope .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.news-grid-scope .news-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-grid-scope .news-info {
  padding: 16px;
}
.news-grid-scope .news-info h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}
.news-grid-scope .news-info p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  height: 44px;
  overflow: hidden;
}

/* ===== PAGINATION ===== */
.news-pagination {
  margin-top: 30px;
  text-align: center;
}
.news-pagination .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #0073aa;
  transition: all .2s ease;
}
.news-pagination .page-numbers:hover {
  background: #0073aa;
  color: #fff;
}
.news-pagination .current {
  background: #0073aa;
  color: #fff;
  font-weight: bold;
}


