.hero-blog {
  background: url("/images/hero/blog.jpg");
  height: 60vh;
  }

  .hero-blog.hero-global::before {
    background-color: rgba(0, 0, 0, 0.2); 
}



.hero-blog h1 {
  letter-spacing: 5px;
  font-weight: 400;
  font-family: "Lato";
  margin-top: 10px;
}

.hero-blog span {
  letter-spacing: 16px;
  font-weight: 500;
  font-family: "Lato";
}

.blog-main {
  padding: 3vh 5%;
}

.blog-main h1, .blog-main h2 {
  text-align: center;
  color: #0c2d51;
}

.blog-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.blog-single {
  width: 100%;
}

.blog-single img {
  height: 600px;
  object-fit: cover;
}

.blog-single h4 {
  margin: 15px 0 5px 0;
}

@media only screen and (max-width: 768px) {
  .blog-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-blog {
    height: 50vh;
    justify-content: end;
    padding-bottom: 20vh;
  }


}

@media (max-width: 376px) {
  .hero-blog {
    height: 50vh;
    justify-content: end;
    padding-bottom: 10vh;
  }
}
