/* WAŻNE – wersja z pulsowaniem i wyrównaniem */
.fajne-wazne-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 36px;
  /* szerokość ustawimy w JS (taka sama jak obrazka Aktualności) */

  padding: 0 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  text-decoration: none;

  border-radius: 8px;
  background: linear-gradient(45deg, #0b5cab, #2d7bff);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
  z-index: 9999;

  animation: fajnePulse 3s ease-in-out infinite;
  transition: transform .2s ease, filter .2s ease;
}

.fajne-wazne-badge:hover,
.fajne-wazne-badge:focus {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
  outline: none;
}

@keyframes fajnePulse {
  0%   { background: linear-gradient(45deg, #0b5cab, #2d7bff); }
  50%  { background: linear-gradient(45deg, #2d7bff, #0b5cab); }
  100% { background: linear-gradient(45deg, #0b5cab, #2d7bff); }
}