.site-footer {
  flex-shrink: 0;
  background: #111;
  padding: 20px 15px;
  text-align: center;
  color: #fff;
  font: 14px var(--font-family);
  letter-spacing: 0.06em;
}

.site-footer__container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  align-items: center;
}

.site-footer__info {
    max-width: 325px;
}

/* Соцмережі */
.footer__socials {
    margin-top: 10px;
}
.footer__socials a:not(:first-child) {
  margin-left: 15px;
}

.footer__socials a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__socials a:hover {
  color: var(--chinazes-color);
}

/* Меню */
.footer__menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.footer__menu ul li:not(:first-child) {
  margin-top: 10px;
}

.footer__menu ul {
  list-style: none;
  padding: 0;
}

.footer__menu ul li a:hover {
  color: var(--chinazes-color);
}


/* Сабфутер */
.site-subfooter {
  background-color: #000;
  padding: 15px 0;
  text-align: center;
  letter-spacing: 0.06em;
}

.site-footer__text {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
  color: #fff;
}


@media (max-width: 768px) {
  .site-footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* простір між блоками */
  }

  .site-footer__info,
  .footer__menu {
    max-width: 100%;
  }

  .footer__menu ul {
    padding: 0;
    margin: 0;
  }

  .footer__menu ul li {
    display: inline-block;
    margin: 5px 10px;
  }

  .footer__menu ul li:not(:first-child) {
    margin-top: 5px;
  }

  .footer__menu ul li a {
    font-size: 15px;
  }

  .footer__socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .footer__socials a {
    margin: 0 10px;
    font-size: 18px;
  }

  .site-subfooter {
    font-size: 11px;
    padding: 10px 0;
  }
}
