.post-filters {
  display: flex;
  justify-content: center;
  column-gap: 12px;
  row-gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-filters li.active a {
  background: var(--Colours-Brand-Navy-Blue-darker, #1a2d52);

  color: #fff;
}
.post-filters li:hover a {
  background-color: var(--color1);

  color: #fff;
}
.post-filters li a {
  transition: all 0.5s ease-in-out;

  font-size: 1rem;
  font-weight: 500;
  border-radius: 40px;
  text-transform: lowercase;
  display: flex;
  padding: 0px 17px 5px 18px;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  color: var(--color9);
  background-color: var(--Colours-Brand-gray-neutral-almost-white);
  line-height: 26px;
}
.posts-view {
  display: flex;
  flex-wrap: wrap;
}
.realizacja-item:hover img {
  transform: scale(1.1);
  opacity: 0.6;
}
.realizacja-item {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.realizacja-item:hover:after {
  content: "";
  background-image: url(../../assets/img/icon-plus-realizacje.svg);
  background-size: 48px;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 178, 169, 0.6);
  pointer-events: none;
}
.realizacja-item.col-33:hover:after {
  background-size: 32px;
}
.realizacja-item img {
  aspect-ratio: 4/3;
  object-fit: contain;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.posts-view .col-50 {
  width: 50%;
}

.posts-view .col-33 {
  width: 33.3333%;
}

@media screen and (max-width: 768px) {
  .post-filters li a {
    font-size: 0.75rem;
    padding: 7px 12px 9px 12px;
    line-height: 1;
  }
  .posts-view .col-50,
  .posts-view .col-33 {
    width: 100%;
  }
  .acf-all-projects-filter > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
