.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 158px;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid #ffffff52;
  border-radius: 999px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-button:hover,
.social-button:focus-visible {
  background: #ffffff13;
  border-color: #c2a15f;
  color: #fff;
  transform: translateY(-2px);
}

.social-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-button .icon-fill,
.social-button .icon-dot {
  fill: currentColor;
  stroke: none;
}

footer {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 58px;
  padding-bottom: 58px;
}

.footer-socials {
  width: 100%;
  margin: 8px 0 4px;
}

.social-heading {
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-button {
    width: min(100%, 280px);
  }
}
