/* Post box list */
.post-box{
  height: 300px;
  display: grid;
  background: #e5e8ea;
  margin-bottom: 20px;
  border-radius: 5px;
}
.post-box:hover{
  box-shadow: rgba(30, 45, 62, 0.21) 0px 10px 15px -10px, rgba(31, 44, 60, 0.1) 0px 5px 40px -10px;
}
.post-box img{
  width: 100%;
}
.post-box h4{
  line-height: 1.8;
  font-size: 18px;
  font-weight: 400;
}
.post-box-headers{
  padding: 25px 10px;
  text-align: center;
}


/* Tag page */
#tag-page .entry-header{
  padding: 2pc;
}
#tag-page .entry-title{
   padding: 15px 25px;
   background: #fff;
   display: inline-block;
   border-radius: 50px;
   font-size: 20px;
 }
