/* 
это кастомный футер */

.black-green-footer {
  background-color: #313255;
  padding: 20px 0;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.black-green-footer-logo img {
  height: 24px;
}

.footer__inner_menu {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.footer__inner_menu li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

.footer__inner_menu li a:hover {
  color: #cccccc;
}

.black-green-footer-rights {
  display: flex;
  align-items: center;
  gap: 10px;
}

.black-green-footer-rights img {
  height: 34px;
}

.black-green-footer-rights p {
  margin: 0;
  font-size: 14px;
  color: #bbb;
}


/* Адаптивность */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .black-green-footer-logo img {
    height: 28px;
  }

  .footer__inner_menu {
    flex-direction: column;
    gap: 12px;
  }

  .black-green-footer-rights {
    flex-direction: column;
    gap: 5px;
  }
}