/* EmplyFlow — единый футер сайта */
.ef-site-foot {
  padding: 22px clamp(16px, 4vw, 40px) 28px;
  background: #050230;
  border-top: 1px solid rgba(217, 214, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
}

.ef-site-foot__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  text-align: center;
}

.ef-site-foot__brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ef-site-foot__sep {
  color: rgba(217, 214, 255, 0.28);
  user-select: none;
}

.ef-site-foot__item {
  color: rgba(255, 255, 255, 0.55);
}

.ef-site-foot__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ef-site-foot__link:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .ef-site-foot {
    font-size: 11.5px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .ef-site-foot__inner {
    gap: 6px 10px;
  }
}

@media (max-width: 560px) {
  .ef-site-foot {
    font-size: 12px;
    line-height: 1.5;
  }

  .ef-site-foot__inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 100%;
  }

  .ef-site-foot__sep {
    display: none;
  }

  .ef-site-foot__brand {
    font-size: 13px;
  }

  .ef-site-foot__item,
  .ef-site-foot__link {
    display: block;
    max-width: 100%;
    text-align: center;
    word-break: break-word;
  }
}
