.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 280px) 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 34px clamp(22px, 5vw, 76px);
  background: #111713;
  color: #f4f6f4;
}
.footer-contacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr));
  gap: 12px;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  background: #ffffff0a;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.footer-item:hover {
  border-color: #ffe50080;
  background: #ffffff10;
}
.footer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffe500;
  color: #050505;
}
.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}
.footer-text small {
  margin-bottom: 3px;
  color: #9eaaa1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-text strong {
  overflow-wrap: anywhere;
  color: #f7f8f7;
  font-size: 14px;
  font-weight: 700;
}
.site-footer .footer-brand {
  justify-self: start;
}
.site-footer .footer-brand img {
  height: 46px;
}
@media (max-width: 1050px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .site-footer {
    padding: 28px 20px;
  }
  .footer-contacts {
    grid-template-columns: 1fr;
  }
  .footer-item {
    padding: 11px 13px;
  }
  .site-footer .footer-brand img {
    height: 42px;
  }
}
