/* Подвал сайта — HTML/CSS (без SVG) */

.ls-site-footer {
  width: 100%;
  margin-top: auto;
  font-family: Inter, system-ui, sans-serif;
  background: var(--ls-blue, #004170);
  color: var(--ls-white, #fff);
}

.ls-site-footer__inner {
  box-sizing: border-box;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 6vw, 5rem) 1.5rem;
}

.ls-site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 5vw, 4rem);
  row-gap: 1rem;
  align-items: start;
}

.ls-site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.ls-site-footer__link {
  color: var(--ls-white, #fff);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-decoration: none;
}

.ls-site-footer__link:hover,
.ls-site-footer__link:focus-visible {
  color: var(--ls-white, #fff);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ls-site-footer__bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.ls-site-footer__copy {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
}

.ls-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.ls-site-footer__legal-link,
.ls-site-footer__legal-btn {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  line-height: 1.3;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
}

.ls-site-footer__legal-link:hover,
.ls-site-footer__legal-btn:hover,
.ls-site-footer__legal-link:focus-visible,
.ls-site-footer__legal-btn:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ls-site-footer__legal-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  user-select: none;
}

html[data-ls-cookie-consent] .ls-site-footer__legal-btn[data-cookie-settings] {
  display: none;
}

/* Подвал на главной: сразу под иллюстрацией, без SVG-дубликата */
.ls-site-footer--on-landing {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin-top: 32px;
}

.ls-site-footer--on-landing .ls-site-footer__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

.ls-site-footer--on-landing .ls-site-footer__bottom {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
  .ls-site-footer__inner {
    padding: 2rem 1.5rem 1.5rem;
  }

  .ls-site-footer__nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ls-site-footer__col {
    gap: 0.875rem;
  }

  .ls-site-footer--on-landing .ls-site-footer__inner {
    padding-top: 1.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .ls-site-footer__nav {
    column-gap: 2rem;
  }
}
