.posts-list {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 50px;
  /* gap: 50px; */
}
.posts-list:after {
  content: "";
  display: block;
  clear: both;
}

.posts-list a.post-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 50%;
  
  /* float: left; */

  color: #000000;
}

.posts-list a.post-item .post-item-wrap {
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  padding-bottom: 35px;

  text-align: center;

  background-color: #fff;
  box-shadow: 0 6px 7px rgba(0, 0, 0, 0.07);
}

a.post-item .post-item-wrap .image {
  display: block;
  margin-bottom: 15px;
  position: relative;
}
a.post-item:hover .post-item-wrap .image-wrap {
  display: block;
  position: relative;
}
a.post-item:hover .post-item-wrap .image-wrap:before {
  content: "";
  display: block;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: rgba(254, 19, 26, 0.8);
}

a.post-item .post-item-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.post-item-wrap .image .cat {
  display: inline-block;
  padding: 15px 20px;
  bottom: 22px;
  position: relative;

  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ff2424;
}
a.post-item .post-item-wrap .content {
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
a.post-item .post-item-wrap .title {
  display: block;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  /* min-height: 55px; */

  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
}

a.post-item .post-item-wrap .descr {
  display: block;
  max-width: 350px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
}

.cat-intro {
  text-align: center;
}
/* --------------------------------------------------
    
    FILTERS
    
-------------------------------------------------- */

.filters {
  padding-top: 70px;
  text-align: center;
  margin-bottom: 20px;
}
.filters.event-filter {
	padding-top: 30px;
	margin-bottom: 0;
}

.filters span {
  display: inline-block;
  margin-right: 15px;
}
.filters a {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;

  border: 1px solid #d2d2d2;
  border-radius: 5px;

  font-size: 12px;
  color: #636262;
  text-transform: uppercase;
}
.filters a:last-child {
  margin-right: 0;
}
.filters a:hover {
  border-color: #ff2424;
  color: #ff2424;
}
.filters a.current {
  background-color: #ff2424;
  border-color: #ff2424;
  color: #fff;
}

.filters a.reset {
  background-color: #df2026;
  color: #fff;
  font-weight: bold;
  border-color: #df2026;
}

/* --------------------------------------------------
    
    PAGINATION
    
-------------------------------------------------- */

.pagination {
  padding-top: 50px;
  margin-bottom: 50px;
  clear: both;
  text-align: center;
}
.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination ul li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;

  vertical-align: middle;
}
.pagination ul li a {
  color: #000000;
  font-size: 20px;
}
.pagination ul li a:hover {
  color: #fe131a;
}
.pagination ul li span {
  color: #fe131a;
  font-size: 24px;
}

.pagination ul li a.prev,
.pagination ul li a.next {
  display: block;
  height: 25px;
  width: 25px;

  position: relative;

  text-indent: -5000px;
}
.pagination ul li a.prev:before,
.pagination ul li a.prev:after,
.pagination ul li a.next:before,
.pagination ul li a.next:after {
  content: "";
  display: block;
  height: 2px;
  width: 15px;

  position: absolute;
  top: 5px;
  left: 0;

  background-color: #000;
  transform: rotate(-45deg);
}
.pagination ul li a.prev:after {
  transform: rotate(45deg);
  top: 15px;
}
.pagination ul li a.next:before {
  transform: rotate(45deg);
  top: 5px;
}
.pagination ul li a.next:after {
  transform: rotate(-45deg);
  top: 15px;
}

/* --------------------------------------------------
    
    SINGLE
    
-------------------------------------------------- */

/* -------------------------
    SINGLE COVER
------------------------- */

.single-cover {
  padding-top: 115px;
  padding-bottom: 100px;
  margin-bottom: 60px;
  position: relative;

  font-size: 14px;
  color: #fff;
  text-align: center;
  white-space: normal;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-cover:after {
  content: "";
  display: block;

  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;

  background-color: rgba(0, 0, 0, 0.3);
}
.single-cover .wrap {
  position: relative;
  z-index: 10;
}
.single-cover span.cat {
  display: block;
  margin-bottom: 100px;

  color: #fff;
  font-size: 38px;
  line-height: 38px;
}

.single-cover h1 {
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 40px;
  font-size: 44px;
  font-weight: normal;
}

.single-cover p.excerpt {
  margin: 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;

  letter-spacing: 1px;
  line-height: 24px;
}

/* --------------------------------------------------
    CONTENT
-------------------------------------------------- */

blockquote {
  display: block;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 10px;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: 0;
  margin-right: 0;

  position: relative;

  color: #ff2424;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 1px;
  text-align: center;
}
blockquote:before,
blockquote:after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin-left: -12px;

  background-color: #ff2424;
  position: absolute;
  left: 50%;
}
blockquote:before {
  top: 0;
}
blockquote:after {
  bottom: 0;
}

.page-content blockquote p {
  font-size: 16px;
  line-height: 34px;
}

/* --------------------------------------------------
    
    LINKED ARTICLES
    
-------------------------------------------------- */

.linked-articles-wrap {
  margin-left: -13px;
  margin-right: -13px;

  font-size: 0;
  text-align: center;
}
.linked-articles-wrap:after {
  content: "";
  display: block;
  clear: both;
}

.linked-articles-wrap a {
  display: inline-block;
  width: 33.3333%;
  margin-bottom: 30px;
  font-size: 16px;

  position: relative;

  color: #fff;
}

.linked-articles-wrap a .item-wrap {
  display: block;
  margin-left: 13px;
  margin-right: 13px;

  position: relative;
}
.linked-articles-wrap a .item-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: rgba(0, 0, 0, 0.4);
}
.linked-articles-wrap a:hover .item-wrap:before {
  background-color: rgba(0, 0, 0, 0.1);
}
.linked-articles-wrap a .item-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.linked-articles-wrap a .item-wrap .article-infos {
  display: block;
  padding-top: 20px;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.item-wrap .article-infos .cat {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 35px;

  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #ff2424;
}
.item-wrap .article-infos .title {
  display: block;
}

@media only screen and (max-width: 700px) {
  .linked-articles-wrap a {
    width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .linked-articles h2 {
    text-align: center;
  }
  .linked-articles-wrap a {
    width: 100%;
    max-width: 280px;
  }
}

@media only screen and (max-width: 770px) {
  .posts-list a.post-item {
    width: 100%;
  }
  a.post-item .post-item-wrap .image {
    margin-bottom: 0;
  }
  .filters {
    padding-top: 0;
  }
  .filters span {
    display: block;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
