/* Wspólna stopka FITCOMPONENT */
.ngh-footer {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  padding: 40px 24px 48px;
  border-top: 0;
  background: transparent;
  text-align: center;
  font-family: 'Lato', 'Segoe UI', Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.ngh-footer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ngh-footer__btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  width: 100%;
  max-width: 720px;
  padding: 14px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  background: rgba(18, 18, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ngh-footer__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(91, 140, 255, 0.35);
  background: rgba(24, 24, 34, 0.95);
  color: #fff;
}
.ngh-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
}
.ngh-footer__sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
}
.ngh-footer__link-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #8ec5ff;
}
.ngh-footer__btn:hover .ngh-footer__link-label {
  color: #9fd0ff;
}
@media (max-width: 560px) {
  .ngh-footer {
    margin-top: 40px;
    padding: 28px 16px 36px;
  }
  .ngh-footer__btn {
    padding: 12px 14px;
    border-radius: 16px;
  }
}
