.blog-boxes{
  margin-bottom:8px;
}
.post-date{
  font-size: 12px;
  font-weight: 700;
  line-height: 2.33;
  letter-spacing: 0.5px;
  color: var(--brownish-grey);

}
.blog-title{
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--greeny-blue);
  margin-bottom: 30px;
}
.blog-detail {
  z-index: 999;
  position: relative;
  padding:10px 30px 30px;
  background: rgba(256,256,256,0.9);
  box-shadow: 0 3px 4px 0 rgba(175,175,175,0.5);
  margin: -100px 30px 30px 30px;
  color: var(--greyish-brown);
  font-weight: 500;
  font-size: 16px;
}
.blog-boxes:hover .blog-detail{
  background:#fff;
  box-shadow: 0 0 4px rgba(0,0,0,.25);
}
.blog-img{
  position: relative;
  overflow: hidden;
}
.blog-img .img-fluid{
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .4s all linear;
  transition: .4s all linear;
  width: 100%;
}
.blog-boxes:hover .blog-img .img-fluid{
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*article box*/

.article-boxes{
  margin-bottom:40px;
  min-height: calc(100% - 40px);

}
.article-title{
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--greeny-blue);
  margin-bottom: 20px;
}
.article-detail {
  z-index: 999;
  position: relative;
  padding:30px;
  color: #a5a5a5;
  font-size: 16px;
  line-height: normal;
  font-weight: 300;
  flex-grow: 1;
  border: 1px solid #d2d2d2;
  line-height: 24px;

}
.article-boxes:hover .article-detail{
  background:#fff;
  
}

@media (max-width:1199.98px) {
  .blog-detail {
   margin: -100px 10px 30px 10px;
 }
}