/* Ряд: заголовок «Контакты» + иконки соцсетей (как на BORMASH). */
.footer__contacts-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  margin: 0 0 6px;
}
.footer__col-title--contacts {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.footer__contacts-social {
  flex: 0 0 auto;
}
.footer__contacts-social .footer__social {
  margin: 0;
  justify-content: flex-end;
  gap: 10px;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.footer__social-item {
  margin: 0;
  padding: 0;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--footer-text, var(--text)) 78%, var(--footer-muted, var(--muted)));
  text-decoration: none;
  line-height: 0;
}
.footer__social-link:hover {
  color: var(--brand);
}
.footer__social-svg {
  display: block;
}

@media (max-width: 480px) {
  .footer__contacts-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__contacts-social .footer__social {
    justify-content: flex-start;
  }
}
