.posts-listing {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 680px) {
  .posts-listing {
    flex-direction: row;
    gap: 3rem;
  }
  .posts-listing .post-item {
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 1200px) {
  .posts-listing .post-item {
    width: calc(33.33% - 2rem);
  }
}

.posts-filter h2 {
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: var(--wp--preset--font-size--font-28);
}
.posts-filter h2 .post-counter {
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--font-18);
  font-weight: 500;
  color: #313D49;
}
.posts-filter h2 .post-counter strong {
  font-weight: 500;
}

.posts-filter-controls {
  margin: 0 0 3rem 0;
  padding: 2rem 1.8rem;
  background-color: #2F8A7A;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="215" height="168" viewBox="0 0 215 168" fill="none"><rect width="215" height="167.5" rx="5" fill="url(%23pattern0_152_294)" fill-opacity="0.1"/><defs><pattern id="pattern0_152_294" patternUnits="userSpaceOnUse" patternTransform="matrix(7.50049 0 0 7.50195 0 0)" preserveAspectRatio="none" viewBox="0 0 15.001 15.0039" width="1" height="1"><g id="pattern0_152_294_inner"><path d="M15.001 0.794922L0.794922 15.0039H0V14.209L14.207 0H15.001V0.794922Z" fill="%230A2948"/></g></pattern></defs></svg>');
}
@media (min-width: 1024px) {
  .posts-filter-controls {
    margin-bottom: 4rem;
  }
}
.posts-filter-controls .inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem;
}
.posts-filter-controls .posts-filter-label {
  display: none;
}
.posts-filter-controls .dropdown {
  position: relative;
}
.posts-filter-controls .dropdown button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  min-width: 140px;
  padding: 1ch 2rem;
  border: 1px solid rgba(79, 91, 103, 0.25);
  border-radius: 3px;
  background-color: #fff;
  font-size: var(--wp--preset--font-size--font-15);
  color: #313D49;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 5rem;
  text-align: left;
  width: 100%;
}
.posts-filter-controls .dropdown button span {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 30px;
  overflow: hidden;
}
.posts-filter-controls .dropdown button::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" fill="none" viewBox="0 0 24 24"><path stroke="%232F8A7A" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m0 0-4-4m4 4 4-4"/></svg>') center center no-repeat;
  background-size: 2rem;
  border-radius: 50%;
  pointer-events: none;
}
.posts-filter-controls .dropdown button:focus, .posts-filter-controls .dropdown button:active {
  outline: none;
  border-color: var(--color-text-main);
  background-color: #fff;
}
.posts-filter-controls .dropdown button:hover {
  cursor: pointer;
}
.posts-filter-controls .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  padding: 0.8rem 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
  overflow: hidden;
}
.posts-filter-controls .dropdown .dropdown-menu li {
  margin: 0 0 4px 0;
  padding: 8px 20px;
  font-size: 1.5rem;
  color: #313D49;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}
.posts-filter-controls .dropdown .dropdown-menu li.active-item, .posts-filter-controls .dropdown .dropdown-menu li:hover {
  background-color: #F3F5F7;
}
.posts-filter-controls .dropdown .dropdown-menu li:last-child {
  margin: 0;
}
.posts-filter-controls .dropdown .dropdown-menu.cat-dropdown {
  min-width: 180px;
}
.posts-filter-controls .search-bar {
  position: relative;
  max-width: 430px;
}
.posts-filter-controls .search-bar span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.posts-filter-controls .search-bar span svg {
  width: 18px;
  height: 18px;
}
.posts-filter-controls .search-bar input {
  width: 100%;
  font-size: var(--wp--preset--font-size--font-15);
  padding: 1ch 2rem 1ch 5rem;
  color: #313D49;
  background: #fff;
  border: 1px solid rgba(79, 91, 103, 0.25);
  border-radius: 3px;
  -webkit-appearance: none;
  transition: border 0.18s ease-in-out;
  height: 5rem;
  cursor: text;
}
.posts-filter-controls .search-bar input:focus {
  outline: none;
  border-color: var(--color-text-main);
  background-color: #fff;
}
.posts-filter-controls .search-bar input::-moz-placeholder {
  color: var(--color-text-muted);
}
.posts-filter-controls .search-bar input::placeholder {
  color: var(--color-text-muted);
}
@media (min-width: 600px) {
  .posts-filter-controls .inner {
    flex-direction: row;
  }
  .posts-filter-controls .inner .dropdown-topics {
    margin-left: auto;
  }
}
@media (min-width: 680px) {
  .posts-filter-controls .search-bar {
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 1024px) {
  .posts-filter-controls .dropdown-topics {
    width: 220px;
  }
}

.load-more-posts {
  text-align: center;
  margin-top: var(--wp--preset--spacing--normal);
}
.load-more-posts .load-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-16);
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  background: linear-gradient(119deg, #d38e1b 68.14%, #0a2948 260.91%), rgba(79, 91, 103, 0.2);
  background-size: 180% 180%;
  background-position: 0% 50%;
  font-weight: 400;
  text-transform: uppercase;
  padding: 14px 20px;
  cursor: pointer;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-position 0.3s ease, transform 0.25s ease;
  letter-spacing: 1px;
}
.load-more-posts .load-more:after {
  content: "";
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="10" viewBox="0 0 19 10" fill="none"><path d="M18 4.92334H0" stroke="white" stroke-width="1.3"/><path d="M14.1428 9.42303L18 4.92303L14.1428 0.423035" stroke="white" stroke-width="1.3"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 9px;
  display: block;
  z-index: 2;
  margin-left: 1.2rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.load-more-posts .load-more:hover, .load-more-posts .load-more:active, .load-more-posts .load-more:focus {
  color: white;
  background-position: 100% 50%;
  transform: translateY(-2px);
}
.load-more-posts .load-more:hover::after, .load-more-posts .load-more:active::after, .load-more-posts .load-more:focus::after {
  transform: translateX(4px);
}
.load-more-posts .load-more {
  min-height: 44px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  transition: color 0.25s ease-in-out;
  position: relative;
  cursor: pointer;
  transition: color 0.25s ease-in-out;
  color: white;
}

.goverlay {
  background: linear-gradient(114deg, #eeeff5 5%, rgb(227.7, 232.25, 236.8) 95%) !important;
}

.glightbox-clean .gslide-description {
  border-radius: 0 0 4px 4px;
}
.glightbox-clean h4.gslide-title {
  font-family: var(--wp--preset--font-family--secondary);
  font-size: var(--wp--preset--font-size--font-21);
  font-weight: 500;
  margin-bottom: 0;
}/*# sourceMappingURL=block-posts-listing.css.map */