.blog-section {
  /* padding: 25px; */
  text-align: center;
  /* font-family: 'Poppins', sans-serif; */
  color: #333;
}

.section-title {
  /* font-size: 2rem; */
  /* font-family: 'Poppins', sans-serif; */
  /* margin-bottom: 40px; */
  color: #2c2c2c;
}

.blog-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.card {
  position: relative;
  width: 320px;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}



@media (max-width: 767px) {
  .card {
    width: 250px;
  }
}

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

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  text-align: left;
}

.card-number {
  color: #bb9545;
}

.card-title {
  margin: 10px 0;
  color: #333;
  text-transform: uppercase;
}

.card-desc {
  color: #555;
}

/* Responsive */
@media (max-width: 960px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
}