/* ==========================================================================
   CityFoundry AG — Blog archive (Ressourcen)
   Category filter and featured post. The post cards themselves are
   shared with the article template and live in components.css.
   Requires: tokens.css, base.css, components.css, inner.css
   ========================================================================== */

/* --- Category filter --------------------------------------------------------- */
.cf-filters {
  max-width: var(--cf-shell);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cf-filter {
  padding: 11px 20px;
  border-radius: var(--cf-radius-pill);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgb(var(--cf-ink-rgb) / .15);
  color: var(--cf-ink);
}

.cf-filter--active {
  border: 0;
  background: var(--cf-ink);
  color: var(--cf-white);
}

/* --- Featured post ------------------------------------------------------------ */
/* The horizontal featured card was removed — the Figma
   `Canvas > ressourcen-page` has no featured block, only the article grid. */

/* --- Responsive ----------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .cf-feature { grid-template-columns: 1fr; }
}
