.blog-hero-section {
  height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 4rem;
}

.blog-img {
  width: 95%;
  height: 100%;
  background-image: url("https://projects.synergynexa.com/ps/wp-content/uploads/2025/07/steptodown.com557900-scaled.png");
  background-size: cover;
  background-position: top;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

.blog-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 35%;
  width: 100%;
  background: linear-gradient(to top, rgba(2, 175, 184, 0.7), transparent);
  z-index: 1;
}

.blog-section {
  padding: 5rem 2rem;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.blog-date {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 1rem;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.blog-content a {
  color: #1ca34a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.blog-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .blog-hero-section {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 3rem 1rem;
  }
  .blog-hero-section {
    height: 35vh;
  }
  .blog-img {
    height: 100%;
    width: 92%;
    border-radius: 30px;
  }

  .blog-img img {
    height: 75%;
  }

  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-card-img img {
    height: 220px;
  }
}
