footer {
  width: 100%;
  background: black;
  font-family: "Mont-Regular";
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 30px 0;
}

/* Мобильная версия */
.footer-inner {
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-left {
  display: contents;
}

.footer-logo-img {
  order: 1;
  width: 60%;
  max-width: 181px;
  cursor: pointer;
}

.footer-right {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-info {
  order: 3;
  display: flex;
  flex-direction: column;
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-menu-list a {
  color: #ADADAD;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu-list a:hover { color: white; }

.footer-partners {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-partners-title {
  color: #ADADAD;
  font-size: 16px;
}

.footer-partner-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-partner-logo-item {
  height: 30px;
  cursor: pointer;
}

.footer-warning-age {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-warning-age-count {
  aspect-ratio: 1/1;
  padding: 3px;
  border-radius: 50%;
  border: 1px solid #ADADAD;
  color: #ADADAD;
  font-size: 12px;
  font-family: "Mont-Medium";
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-warning-age-text {
  color: #ADADAD;
  font-size: 15px;
}

.footer-policy {
  margin-top: 28px;
  color: #ADADAD;
  font-size: 14px;
  text-decoration: none;
}

.footer-policy:hover { color: white; }

.footer-warning-info {
  margin-top: 12px;
  color: #ADADAD;
  font-size: 14px;
}

/* Десктоп от 800px */
@media (min-width: 800px) {
  footer {
    padding: 30px 36px;
  }

  .footer-inner {
    min-width: 728px;
    max-width: 1600px;
    flex-direction: row;
    gap: 24px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    min-width: 265px;
    max-width: 691px;
    flex: 3;
    row-gap: 48px;
  }

  .footer-logo-img {
    order: unset;
    max-width: 181px;
  }

  .footer-right {
    min-width: 440px;
    max-width: 461px;
    order: unset;
    flex: 5;
    justify-content: space-between;
    gap: 0;
  }

  .footer-info {
    order: unset;
  }

  .footer-menu-list {
    justify-content: space-between;
    gap: 16px;
  }

  .footer-partner-logo {
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .footer-menu-list {
    gap: 20px;
  }
}