/* 
    blog grid
*/
.grid-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 26px;
  margin-top: 5px;
}

.grid-post {
  width: 375px;
  float: left;
  height: 375px;
  margin-bottom: 20px;
}

.grid-thumbnail {
  width: 375px;
  overflow: hidden;
  height: 375px;
  position: relative;
}

.grid-thumbnail img {
  height: auto;
  width: auto;
  min-width: 100%;
  min-height: 100%;
}

.grid-hover {
  height: 248px;
  width: 375px;
  padding: 15px;
  display: block;
  position: absolute;
  opacity: 0;
  background-color: rgba(255,255,255,0.6);
  font-size: 24px;
  line-height: 31px;
  font-family: 'dns_regular';
  color: #555;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: 0px;
}

.grid-thumbnail:hover .grid-hover{
  opacity: 1;
}

.grid-details {    
    height: 140px;
    width: 375px;
    padding: 15px;
    display: block;
    margin-top: 248px;
    position: absolute;
    background-color: rgba(255,255,255,0.6);
    top: 0px;
}

.grid-title
{
  font-size: 24px;
  line-height: 31px;
  font-family: 'dns_regular';
  color: #555;
  text-transform: uppercase;
  line-height: 28px;
}

.grid-title-time {
  font-size: 18px;
  font-family: 'dns_regular';
  color: #666;
  text-transform: uppercase;
  position: absolute;
  bottom: 15px;
}