.articles-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 40px;
}
.articles-list > * {
  width: calc(25% - 40px);
  margin: 0 20px 30px 20px;
}
@media screen and (max-width: 1200px) {
  .articles-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .articles-list > * {
    width: calc(33.333333333333% - 40px);
    margin: 0 20px 30px 20px;
  }
}
@media screen and (max-width: 870px) {
  .articles-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 20px;
  }
  .articles-list > * {
    width: calc(50% - 30px);
    margin: 0 15px 30px 15px;
  }
}
@media screen and (max-width: 570px) {
  .articles-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 15px;
  }
  .articles-list > * {
    width: calc(100% - 0px);
    margin: 0 0px 30px 0px;
  }
}
article {
  display: block;
  background-color: white;
  overflow: hidden;
  border-radius: 22px 22px 8px 8px;
  margin: 0 1em 0 1em;
  display: flex;
  flex-direction: column;
}
article.hide {
  display: none;
}
article .image {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 150px;
}
article .image:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: linear-gradient(90.72deg,rgba(98,114,255,0.3) 0.74%,rgba(254,197,255,0.3) 99.56%);
}
article img {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
article .bt {
  width: 100%;
}
article .entry-excerpt {
  font-family: 'IBM Plex Sans';
  font-size: 15px;
  line-height: 24px;
}
article .price {
  font-family: 'Lexend';
  font-weight: 700;
  font-size: 17px;
  line-height: 27px;
  margin-top: auto;
}
article .entry-content {
  padding: 1em;
  color: #00455B !important;
}
article h4 {
  font-size: 1.1em;
  margin-top: 0.6em;
  font-weight: 700;
}
article h4 a {
  font-family: Lexend;
  color: #00455B !important;
  display: inline-block;
  text-decoration: none;
  text-transform: none;
}
