/* Content Pattern */
#blog-module .blog-post {
  margin-left: 35px;
}
.blog-post .blog-date {
  position: absolute;
  left: -35px;
  top: 0px;
  display: block;
  background-color: #fff;
  border-radius: 5px;
}
.blog-post .month {
  display: block;
  padding: 5px 15px;
  text-transform: uppercase;
  background-color: #492900;
  border-radius: 5px 5px 0 0;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.blog-post .day-of-week {
  display: block;
  text-align: center;
  font-size: 36px;
  padding: 10px 0;
  color: #492900;
  background-color: #eadcc3;
  border-radius: 3px;
}
.blog-post .content {
  position: relative;
  padding-left: 45px;
  padding-right: 20px;
}
.blog-post .excerpt a {
  display: inline-block;
}

@media all and (max-width: 800px) {
  .blog-post .month {
    padding: 5px 8px;
  }
  .blog-post .content {
    padding-left: 35px;
  }
  #blog-module .blog-post {
    width: calc(100% - 35px);
  }  
}
/* End of Content Pattern */

/* Layout */
.bl-subtitle {
  display: block;
  text-align: center;
}
.blog-post {
  margin: 10px 0px;
}
@media all and (min-width: 801px) {
  .full-width .bl-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .full-width .blog-post {
    width: 48%;
    margin: 10px;
  }
  .full-width .blog-post:first-of-type {
    margin-left: 0px;
  }
  .full-width .blog-post:last-of-type {
    margin-right: 0px;
  }
}
@media all and (max-width: 800px) {
  .bl-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .blog-post {
    width: 100%;
  }
}
/* End Layout */