/* Uzupełnienie Tachyons (bundled w Ananke) o wzorce nieobecne w utility CSS: sticky header, siatka kart, kółka ikon, numery kroków. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card-grid-narrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Ananke ustawia .nested-links a { color } z wyższą specyficznością niż Tachyons .white,
   więc CTA renderowane przez shortcode wewnątrz treści artykułu traciłoby biały kolor tekstu. */
.nested-links a.cta-button {
  color: #fff !important;
}

.badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
}
