  #blog-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      padding: 20px 0;
    }

    /* Blog card */
   .blog-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  width: 320px;
  border: 2px solid black;
  text-decoration: none;
  height: 350px;
  position: relative;
  color: white; 
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 350px !important;
  width: 320px !important;
  object-fit: cover !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.7); 
}

.blog-content {
  padding: 15px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
}

.blog-title {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.blog-description {
  font-size: 35px; 
  font-weight: 900;
  color: #fff;
  line-height: normal;
}
