.blog-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  background-color: #000;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}
.blog-card {
  background-color: #111;
  border: 2px solid #f0b400;
  border-radius: 15px;
  color: #fff;
  width: 22%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(240,180,0,0.1);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(240,180,0,0.3);
}
.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}
.blog-content h3 a {
  color: #f0b400 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-content h3 a:hover {
  color: #ffffff !important;
}
.blog-content p {
  color: #ccc;
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog-date {
  font-size: 13px;
  color: #888;
  text-align: right;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-card { width: 45%; }
}
@media (max-width: 768px) {
  .blog-card { width: 100%; }
}
