#appFooter,
#appFooter .footer__top,
#appFooter .footer__cols {
  min-width: 0;
}

#appFooter .footer {
  padding: 48px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 253, 247, .78);
  background: linear-gradient(180deg, #172033 0%, #111827 100%);
}

#appFooter .footer__container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

#appFooter .footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

#appFooter .footer__brandTitle {
  margin-bottom: 10px;
  color: var(--surface-solid, #fffdf7);
  font-family: var(--font-head, var(--font-sans, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif));
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

#appFooter .footer__lead {
  max-width: 52ch;
  margin: 0 0 10px;
  color: rgba(255, 253, 247, .62);
  font-size: 14px;
  line-height: 1.6;
}

#appFooter .footer__fineprint {
  max-width: 72ch;
  margin: 0;
  color: rgba(255, 253, 247, .62);
  font-size: 12px;
  line-height: 1.6;
}

#appFooter .footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

#appFooter .footer__title {
  margin: 2px 0 12px;
  color: rgba(255, 253, 247, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#appFooter .footer__links {
  display: grid;
  gap: 10px;
}

#appFooter .footer__links a {
  width: fit-content;
  padding: 2px 0;
  color: rgba(255, 253, 247, .68);
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease, background .2s ease;
}

#appFooter .footer__links a:hover {
  background: rgba(255, 253, 247, .08);
  color: var(--surface-solid, #fffdf7);
  transform: translateY(-1px);
}

#appFooter .footer__links a:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(255, 255, 255, .22);
  outline-offset: 3px;
}

#appFooter .footer__copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

#appFooter .footer__copyLeft,
#appFooter .footer__copyRight {
  color: rgba(255, 253, 247, .62);
  font-size: 12px;
  line-height: 1.6;
}

#appFooter .footer__copyRight {
  text-align: right;
}

#appFooter .footer__copy strong {
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

@media (max-width: 920px) {
  #appFooter .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #appFooter .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  #appFooter .footer__copyRight {
    text-align: left;
  }
}

@media (max-width: 560px) {
  #appFooter .footer {
    padding: 30px 0 16px;
  }

  #appFooter .footer__container {
    width: min(100% - 1rem, 1180px);
  }

  #appFooter .footer__top {
    gap: 20px;
  }

  #appFooter .footer__brandTitle {
    margin-bottom: 6px;
    font-size: 20px;
  }

  #appFooter .footer__lead {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.48;
  }

  #appFooter .footer__fineprint {
    font-size: 11px;
    line-height: 1.45;
  }

  #appFooter .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  #appFooter .footer__cols > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  #appFooter .footer__title {
    margin-bottom: 7px;
    font-size: 11px;
  }

  #appFooter .footer__links {
    gap: 6px;
  }

  #appFooter .footer__links a {
    min-height: 30px;
    padding: 4px 0;
    font-size: 13px;
    line-height: 1.2;
  }

  #appFooter .footer__copy {
    gap: 10px;
    margin-top: 22px;
    padding-top: 14px;
  }

  #appFooter .footer__copyLeft,
  #appFooter .footer__copyRight {
    font-size: 11px;
    line-height: 1.45;
  }
}
