    .masonry {
  columns: 4;
  column-gap: 2px;
}
@media only screen and (max-width: 1200px) {
  .masonry {
    columns: 4;
  }
}
@media only screen and (max-width: 992px) {
  .masonry {
    columns: 2;
    column-gap: 3px;
  }
}
.masonry .grid {

  margin-bottom: 3px;
  position: relative;
}
.masonry .grid:before {
  border-radius: 0px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

}
.masonry .grid img {
  width: 100%;
  border-radius: 0px;
}
.masonry .grid__title {
    
  /*background-color: rgba(0, 0, 0, 0.5);*/
  font-size: 16px;
  font-weight: bold;
  margin: 0px 0px 0px 0px;
  padding: 5px 1px 0px 0px;
  border-radius: 0px;
  text-align: center;
  
}
.masonry .grid__author {
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  /*font-weight: bold;*/
  margin: 0px 0px;
  padding: 5px 5px;
  border-radius: 0px;
  color :#E0E0E0;
  text-align: center;
}
.masonry .grid__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.masonry .grid__body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0px 0px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.masonry .grid__tag {
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  color: #fff;
  border-radius: 0px;
  padding: 1px 1px;
  margin: 0px 0px ;
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}