.blog-banner {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-banner img {
  width: 100%;
 
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.row-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.blog-card {
  flex: 0 1 calc(33.333% - 30px);
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.blog-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.3;
}

.blog-description {
  flex-grow: 1;
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-description a {
  display: inline-block;
  margin-top: 10px;
  background-color: maroon;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.blog-description a:hover {
  background-color: #990000;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-card {
    flex: 0 1 calc(48% - 30px);
  }
}

@media (max-width: 600px) {
  .blog-card {
    flex: 0 1 100%;
  }
}
