.social-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(217, 216, 209, 0.18);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(217, 216, 209, 0.32);
  color: #f0efe8;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: #f0efe8;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .facebook-icon {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 560px) {
  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-links a {
    justify-content: center;
  }
}
