.featured-blogs {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.featured-blogs .featured-blog {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-blogs .fb-image {
  height: 200px;
  overflow: hidden;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
.featured-blogs .featured-blog .fb-info {
  display: flex;
  flex-direction: column; 
  flex: 1; 
  background-color: rgba(245,245,245,1.0);
  padding: 20px;
}
.fb-info h4 {
  font-weight: 500;
}
.fb-info .fb-excerpt {
  margin-bottom: 40px;
}
.fb-info .custom-btn {
  margin-top: auto;
}


@media (max-width: 992px) {
  .featured-blogs {
    flex-wrap: wrap;
    gap: 50px;
  }
  .featured-blogs .featured-blog {
    flex: 0 0 100%;
}

  