
.blog-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  column-gap: 30px;
}
.blog-body .blog-img {
  height: 200px;
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.blog-body .blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.blog-body .blog-title .title {
  font-family: "Basis Grotesque Pro" !important;
  letter-spacing: 0.25px;
  color: #014554;
  font-weight: 500;
  font-size: 25px;
  line-height: 27px;
  margin: 0;
  text-decoration: none;
}
.blog-item.show {
  animation: fadeIn 0.5s ease;
}
.blog-item.hide {
  display: none;
}
@media (max-width: 991px) {
  .blog-block {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
}
@media (max-width: 767px) {
  .blog-block {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
}
