/* =========================================
   Футер
   ========================================= */
.footer {
  width: 100%;
  height: 480px;
  background: #111111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.footer__inner {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;                     /* отступ между столбцами */
  flex-wrap: wrap;
}

.footer__col {
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 260px;
}

/* Логотип */
.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
}

/* Соцсети */
.footer__socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__socials a img {
  width: 25px;
  height: 25px;
  display: block;
}

/* Юридическая информация */
.footer__legal {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #525252;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer__support {
  color: #ff8562;
  text-decoration: none;
}
.footer__support:hover {
  text-decoration: underline;
}

/* Копирайт */
.footer__copy {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #525252;
}

/* Заголовки столбцов */
.footer__title {
  font-family: 'Geist', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

/* Ссылки */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 0px;
}
.footer__links li a {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #b5b5b5;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links li a:hover {
  color: #FFCD02;
}

/* Адаптив */
@media (max-width: 900px) {
  .footer {
    height: auto;
  }
  .footer__inner {
    gap: 40px;
  }
  .footer__col {
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer__col {
    max-width: 100%;
  }
}