.probu-project-filters {
  margin: 0 0 32px;
}

.probu-project-filters__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.probu-project-filters__button {
  appearance: none;
  border: 2px solid #e9dfd2;
  border-radius: 999px;
  background: #fff;
  color: #2a2a2e;
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
}

.probu-project-filters__button:hover,
.probu-project-filters__button:focus-visible {
  background: #e8892a;
  border-color: #e8892a;
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.probu-project-filters__button.is-active {
  background: #e8892a;
  border-color: #e8892a;
  box-shadow: 0 16px 32px rgba(232, 137, 42, 0.18);
  color: #fff;
}

.premium-blog-post-container.has-probu-project-enhancements
  .premium-blog-thumb-effect-wrapper {
  position: relative;
}

.probu-project-card__badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.probu-project-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff0cf;
  color: #b4680e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(34, 30, 22, 0.08);
}

.premium-blog-post-container.has-probu-project-enhancements
  .probu-project-card__categories {
  display: none !important;
}

.probu-project-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #e8892a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    gap 0.25s ease;
}

.probu-project-card__cta:hover,
.probu-project-card__cta:focus-visible {
  color: #b4680e;
  gap: 14px;
  outline: none;
  transform: translateX(2px);
}

.probu-project-card__cta-arrow {
  font-size: 1.15em;
  line-height: 1;
}

.premium-blog-post-outer-container {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.premium-blog-post-outer-container.is-filter-entering {
  animation: probuProjectCardIn 0.32s ease both;
}

.premium-blog-post-outer-container.is-filter-leaving {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  filter: blur(2px);
  pointer-events: none;
}

.premium-blog-post-outer-container.is-filter-hidden {
  display: none !important;
}

.probu-project-filters__notice {
  color: #b4680e;
  font-weight: 700;
}

@media (max-width: 767px) {
  .probu-project-filters {
    margin-bottom: 24px;
  }

  .probu-project-filters__list {
    gap: 12px;
  }

  .probu-project-filters__button {
    padding: 14px 24px;
  }

  .probu-project-card__badges {
    top: 16px;
    left: 16px;
    right: 16px;
    gap: 8px;
  }
}

@keyframes probuProjectCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
