.social-footer {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(-50%);
}

.social-footer a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.36);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.46);
  color: #f4efe6;
  backdrop-filter: blur(14px);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-footer a:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 239, 230, 0.78);
  background: rgba(244, 239, 230, 0.12);
}

.social-footer .icon-linkedin {
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.social-footer .icon-instagram {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.social-footer .icon-instagram::before,
.social-footer .icon-instagram::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.social-footer .icon-instagram::before {
  inset: 3px;
  border: 2px solid currentColor;
}

.social-footer .icon-instagram::after {
  top: 2px;
  right: 2px;
  width: 2px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 760px) {
  .social-footer {
    bottom: 10px;
  }

  .site-shell .entrance {
    bottom: 72px;
  }
}
