.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.news-card {
  background: #1a1a1a;             
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255,0,0,0.3); 
}

.news-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;              
  background-color: #000;
}

.news-content {
  padding: 1rem;
  color: #eee;                   
}

.news-content h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ff4444;                 
}

.news-content .date {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.news-content .btn {
  display: inline-block;
  margin-top: 0.5rem;
  background: #e60023;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
}

.news-content .btn:hover {
  background: #b71c29;
}



