.news-list {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.news-list__item {
  width: 100%;
  padding-bottom: 15px 0 0;
  background-color: #edddd2;
  border-radius: 10px;
  outline: 1px solid #edddd2;
  overflow: hidden;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.news-card__content {
  padding: 0 15px;
}

.news-card__title {
  color: black;
  font-size: 24px;
}

.news-card__link a {
  color: black;
  font-size: 24px;
  padding: 0 15px;
  display: block;
  text-decoration: none;
  background-color: #fff2e7;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 15px;
  text-align: center;
}
.news-card__link a:hover {
  color: white;
  background-color: #cc997e;
}

@media (min-width: 1024px) {
  .news-list__item {
    flex: 0 0 calc(50% - 15px);
  }
  .news-card__link {
    margin-top: auto;
  }
}

/*# sourceMappingURL=wp-posts.css.map */
