.publink-pricing-card {
  /* position: relative; */ /* Ta linia była potrzebna dla etykiety */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.publink-pricing-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.publink-pricing-card:nth-of-type(3)::after {
  content: 'Najczęściej wybierany';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0d2a59;
  color: white;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
*/