.benefitBanner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0px auto;
}

.benefitBanner__item {
  flex: 1 1 220px;
  max-width: 140px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefitBanner__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefitBanner__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.benefitBanner__picture img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.benefitBanner__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.benefitBanner__data {
  font-size: 0.95rem;
  color: #666;
}

/* Responsivita */
@media (max-width: 768px) {
  .benefitBanner {
    gap: 15px;
  }

  .benefitBanner__item {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .benefitBanner__item {
    flex: 1 1 100%;
  }

  .benefitBanner__title {
    font-size: 1rem;
  }

  .benefitBanner__data {
    font-size: 0.9rem;
  }
}