/*-------------------------
all_news
--------------------------*/
.wp-block.all_news .news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
  padding-bottom: 64px;
}
.wp-block.all_news .news-wrapper .news-block {
  display: flex;
  flex-direction: column;
  padding: 16px;
  width: 100%;
  background: #edf4f5;
}
@media only screen and (min-width: 768px) {
  .wp-block.all_news .news-wrapper .news-block {
    width: calc(50% - 16px);
  }
}
@media only screen and (min-width: 1024px) {
  .wp-block.all_news .news-wrapper .news-block {
    width: calc(25% - 24px);
  }
}
@media only screen and (min-width: 1280px) {
  .wp-block.all_news .news-wrapper .news-block {
    width: calc(25% - 24px);
  }
}
.wp-block.all_news .news-wrapper .news-block picture {
  margin-bottom: 16px;
  display: block;
}
.wp-block.all_news .news-wrapper .news-block picture img {
  display: block;
  width: 100%;
}
.wp-block.all_news .news-wrapper .news-block .date {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  margin-bottom: 16px;
}
.wp-block.all_news .news-wrapper .news-block .title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  color: #000000;
  margin-bottom: 16px;
  transition: color 300ms ease;
}
.wp-block.all_news .news-wrapper .news-block .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  margin-bottom: 16px;
}
.wp-block.all_news .news-wrapper .news-block .brown-colour-button {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #c5af67;
  font-family: "Poppins";
  transition: color 300ms ease;
}
.wp-block.all_news .news-wrapper .news-block .brown-colour-button:hover {
  transition: color 300ms ease;
  color: rgb(187.14, 161.4, 77.16);
}
.wp-block.all_news .news-wrapper .news-block .post-categories {
  display: flex;
  padding: 0;
  gap: 6px;
  margin: 0;
}
.wp-block.all_news .news-wrapper .news-block .post-categories.top-cats {
  justify-content: flex-start;
  padding-bottom: 16px;
}
.wp-block.all_news .news-wrapper .news-block .post-categories li {
  list-style-type: none;
}
.wp-block.all_news .news-wrapper .news-block .post-categories li a {
  display: inline-block;
  background: #cadde1;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background 400ms ease, color 400ms ease;
}
.wp-block.all_news .news-wrapper .news-block .post-categories li a:hover {
  color: #fff;
  background: #4e8d9a;
  transition: background 400ms ease, color 400ms ease;
}
.wp-block.all_news .button-outer-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.wp-block.all_news .button-outer-wrap .brown-button {
  padding: 16px 24px;
  cursor: pointer;
}
.wp-block.all_news #cat-select-container {
  flex-wrap: wrap;
  overflow: hidden;
  display: flex;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 0;
}
.wp-block.all_news #cat-select-container .category-select {
  padding: 8px 16px;
  color: #000000;
  background: #dee2e6;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  cursor: pointer;
  text-transform: capitalize;
  white-space: nowrap;
}
.wp-block.all_news #cat-select-container .category-select.active {
  color: #ffffff;
  background: #4e8d9a;
}