.bschool_posts_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  gap: 15px;
}

.bschool_post {
  max-width: 24%;
  position: relative;
  border: solid 1px #eee;
  min-width: 300px;
  display: block;
  overflow: hidden;
}

.bschool_post_img_wrapper {
  height: 100%;
}

.bschool_post_img_wrapper img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.bschool_post_content_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(129, 138, 145, .8);
  display: flex;
  align-items: center;
  padding: 25px;
  opacity: 0;
  transition: all 200ms linear;
}

.bschool_post_content_wrapper h2 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}

.bschool_post:hover .bschool_post_content_wrapper {
  opacity: 1;
}

.mbachic_ambassadors_wrapper {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  margin-top: 50px;
  max-width: 1400px;
  flex-wrap: wrap;
}

.mbachic_ambassador {
  min-width: 150px
}

.mbachic_ambassador img {
  width: 150px;
  border-radius: 50% !important;
}

.mbachic_ambassador h3 {
  font-size: 1rem;
  font-weight: bold;
  font-style: italic;
  color: #666;
}

@media only screen and (max-width: 660px) {
  .bschool_post_img_wrapper {
    height: auto;
  }

  .bschool_post_content_wrapper {
    position: relative;
    top: unset;
    left: unset;
    height: auto;
    display: block;
    padding: 12px 20px;
    background-color: rgba(129, 138, 145, 1);
    opacity: 1;
  }

  .bschool_post_content_wrapper h2 {
    font-size: 16px;
  }
}