.listpost {
  padding: 2em 0;
}
.listpost .inner article {
  align-items: center;
  border-bottom: thin solid #eee;
  padding: 1em 0;
  overflow: hidden;
}
@media screen and (min-width: 680px) {
  .listpost .inner article {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 0.5em;
    max-height: 150px;
    position: relative;
  }
  .listpost .inner article:hover {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .listpost .inner article::after {
    content: "";
    width: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0) 100%);
    height: 1.5em;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.listpost .inner article:hover {
  background: #fafafa;
}
.listpost .inner article img {
  grid-row: 1/span 2;
  grid-column: 1;
  max-width: 200px;
  max-height: 200px;
  display: block;
  margin: 0 auto;
  padding: 1em;
  align-self: center;
}
@media screen and (min-width: 680px) {
  .listpost .inner article img {
    align-self: flex-start;
    max-width: 100px;
    max-height: 100px;
    padding: 0 0.5em 0 0;
  }
}
.listpost .inner article h4 {
  grid-row: 1;
  grid-column: 2;
  align-self: flex-start;
  margin: 0px;
}
.listpost .inner article p {
  grid-row: 2;
  grid-column: 2;
  align-self: flex-start;
  font-size: 14px;
  margin: 0;
}
.listpost .inner article .wp-block-button {
  text-align: right;
  width: 100%;
}
.listpost .inner article .wp-block-button a {
  padding: 0.75em 1em;
}
@media screen and (min-width: 680px) {
  .listpost .inner article .wp-block-button {
    align-self: flex-start;
    grid-row: 2;
    grid-column: 3;
  }
}
.listpost .inner article .wfr-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #5a4b42;
  margin: 1em -0.5em -0.5em;
}
.listpost .inner article .wfr-cats img {
  height: 60px;
  width: auto;
  padding: 5px;
  margin: 5px 0;
  transition: background ease 0.5s;
  opacity: 0.7;
}
.listpost .inner article .wfr-cats img:hover {
  background-color: rgba(20, 20, 20, 0.5);
  opacity: 1;
}/*# sourceMappingURL=wfr-style.css.map */