.categoryList {
  padding: 2rem 0;
}

.categoryList li {
  display: inline-block;
  border: 1px solid #333;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.categoryList li.blog:hover {
  background-color: #52B88C;
  color: #fff;
}

.categoryList li.news:hover {
  background-color: #6288C5;
  color: #fff;
}

.categoryList li.event:hover {
  background-color: #F7B52C;
  color: #fff;
}

.categoryList li a {
  display: block;
  padding: .3rem;
  width:6em;
  text-align: center;
}

.post-wrapper .postList {
  border-top: 1px solid #333;
}

.post-wrapper .postList .post-elm {
  border-bottom: 1px solid #333;
}

.post-wrapper .postList .post-elm article {
  padding: 2rem 0;
}

.post-wrapper .postList .post-elm article .post-img {
  margin-bottom: .5rem;
}

.post-wrapper .postList .post-elm article .post-img img {
  width: 100%;
  height: auto;
}

.post-wrapper .postList .post-elm article .post-cat,
.post-wrapper .postList .post-elm article .post-time {
  display: inline-block;
}

.post-wrapper .postList .post-elm article .post-cat {
  border: 1px solid #333;
  width:6em;
  text-align: center;
  margin-right: 1rem;
  color: #fff;
}

.post-wrapper .postList .post-elm article .post-cat.news {
  background-color: #6288C5;
}

.post-wrapper .postList .post-elm article .post-cat.blog {
  background-color: #52B88C;
}

.post-wrapper .postList .post-elm article .post-cat.event {
  background-color: #F7B52C;
}

.post-wrapper .postList .post-elm article .post-title {
  font-size: 1.3em;
  margin-bottom: .5rem;
}

@media screen and (min-width: 768px) {
  .post-wrapper .postList .post-elm article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .post-wrapper .postList .post-elm article .post-img {
    width: 30%;
    margin-right: 1rem;
  }
  .post-wrapper .postList .post-elm article .post-title {
    font-size: 1.4em;
    margin-bottom: 2rem;
    font-weight: bold;
  }
  .post-wrapper .postList .post-elm article .right {
    width: calc(100% - (30% + 1rem));
  }
  .post-wrapper .postList .post-elm article .post-text {
    font-size: 1.1em;
  }
}

.archives {
  margin: 4rem 0;
}

.archives h4 {
  text-align: center;
  margin-bottom: 2rem;
}

.archives ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.archives ul li {
  text-align: center;
  width: 30%;
  margin: .5rem 1%;
}

.archives ul li a:hover {
  color: #5FB530;
}

@media screen and (min-width: 768px) {
  .archives {
    margin: 6rem 0;
  }
  .archives ul li {
    width: 18%;
    margin: .5rem 1%;
  }
}
/*# sourceMappingURL=archive.css.map */