.block-posts .posts {
  display: grid;
  grid-gap: 2rem;
}
@media (min-width: 501px) {
  .block-posts .posts.col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (max-width: 1024px) {
  .block-posts .posts .excerpt:nth-of-type(3) {
    display: none;
  }
}
.block-posts .excerpt {
  background: #fff;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  font-size: 1.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block-posts .excerpt p {
  margin-bottom: 1rem;
}
.block-posts p.meta {
  text-transform: uppercase;
  color: #00aae9;
  font-size: 1.4rem;
}
.block-posts .thumbnail {
  position: relative;
  width: calc(100% + 5rem);
  height: 0;
  padding-bottom: 66%;
  margin: -3rem -2.5rem 1rem;
}
.block-posts .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.block-posts h3 {
  font-size: 2rem;
  font-family: "ivypresto-display", sans-serif;
  margin-bottom: 2rem;
}
.block-posts footer {
  margin-top: auto;
  padding-top: 1rem;
}