.home-news-list {
  margin-top: 2em;
}
.home-news-list .post {
  background: rgba(181, 166, 151, 0.4);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  margin-bottom: 2em;
  transition-duration: 0.2s;
  position: relative;
  min-height: 160px;
}
.home-news-list .post a {
  transition-duration: 0.2s;
}
.home-news-list .post h3.title {
  font-family: 'Handlee', 'Open Sans', sans-serif;
  font-size: 2.1rem;
  margin-top: 0;
}
@media only screen and (min-width: 87.5em) {
  .home-news-list .post h3.title {
    margin-top: 21px;
  }
}
.home-news-list .post:hover {
  background: rgba(151, 130, 115, 0.3);
}
@media only screen and (min-width: 87.5em) {
  .home-news-list .post {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}
.home-news-list .post .news-thumbnail {
  padding: 1.5em 0 0;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 87.5em) {
  .home-news-list .post .news-thumbnail {
    padding: 0;
    width: 33%;
  }
}
.home-news-list .post .news-thumbnail:before {
  background-clip: padding-box;
  border-bottom: 0.5em solid #978273;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 2em;
  left: 0;
}
@media only screen and (min-width: 87.5em) {
  .home-news-list .post .news-thumbnail:before {
    border-bottom: none;
    border-right: 0.5em solid #978273;
    bottom: 0;
    right: auto;
    width: 91%;
  }
}
.home-news-list .post .news-thumbnail img {
  position: relative;
  border: 7px solid rgba(255, 255, 255, 0.9);
  margin-left: 1em;
  margin-right: 1em;
  max-width: 90%;
  display: inline-block;
}
@media only screen and (min-width: 87.5em) {
  .home-news-list .post .news-thumbnail img {
    margin-left: 1.5em;
    margin-right: 0;
    max-width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.home-news-list .post div.content {
  padding: 1em 1.5em;
}
@media only screen and (min-width: 87.5em) {
  .home-news-list .post div.content {
    width: 60%;
    padding: .5em 1em;
  }
}
.home-news-list .post .read-more {
  font-size: 1.4rem;
  line-height: 1.4;
}
.home-news-list .post.accent-blue .news-thumbnail:before {
  background-color: #5e7899;
  border-color: rgba(94, 120, 153, 0.25);
}
.home-news-list .post.accent-blue a {
  color: #37465a;
}
.home-news-list .post.accent-blue:hover a {
  color: #10151b;
}
.home-news-list .post.accent-red .news-thumbnail:before {
  background-color: #552628;
  border-color: rgba(85, 38, 40, 0.25);
}
.home-news-list .post.accent-red a {
  color: #552628;
}
.home-news-list .post.accent-red:hover a {
  color: #200e0f;
}
.home-news-list .post.accent-green .news-thumbnail:before {
  background-color: #9b9558;
  border-color: rgba(155, 149, 88, 0.35);
}
.home-news-list .post.accent-green a {
  color: #6a663c;
}
.home-news-list .post.accent-green:hover a {
  color: #292817;
}
