.news-grid {
  background: #faf7f2;
  padding: 6rem 1.5rem;
}

.news-grid .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.news-grid h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
}

.news-grid .lead {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.news-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-grid .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-grid .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-grid .card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #8b0000;
}

.news-grid .card .meta .tag {
  background: #8b0000;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.news-grid .card h2 {
  font-size: 1.2rem;
  margin: 0.5rem 1rem;
  color: #222;
}

.news-grid .card p {
  font-size: 0.95rem;
  margin: 0 1rem 1rem 1rem;
  color: #555;
  line-height: 1.6;
}

.news-grid .pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.news-grid .pagination a {
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  transition: background 0.3s ease;
}

.news-grid .pagination a:hover {
  background: #f3f3f3;
}

@media (max-width: 900px) {
  .news-grid .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid .grid {
    grid-template-columns: 1fr;
  }
}
