.footer-social {
  margin-top: 1.2rem;
}

.footer-social__title {
  margin: 0 0 0.7rem;
  color: #c89b3c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-social__links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social__link {
  position: relative;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0.55rem 1.3rem rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease,
    background-color 180ms ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  border-color: rgba(200, 155, 60, 0.9);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.footer-social__link:focus-visible {
  outline: 2px solid #c89b3c;
  outline-offset: 3px;
}

.footer-social__link img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  max-width: none;
  clip-path: circle(34% at 50% 50%);
  object-fit: cover;
  transform: translate(-50%, -50%);
}

@media (max-width: 767.98px) {
  .footer-social {
    margin-top: 1rem;
  }

  .footer-social__link {
    width: 2.55rem;
    height: 2.55rem;
  }

  .footer-social__link img {
    width: 3.45rem;
    height: 3.45rem;
  }
}
