footer {
  align-items: center;
}

.footer-meta {
  display: flex;
  gap: 28px;
}

.footer-meta p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7f8a80;
  text-decoration: none;
  transition: color .2s, border-color .2s, transform .2s;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
  border-color: rgba(236, 241, 232, .35);
  transform: translateY(-2px);
  outline: none;
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

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

.social-links span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  footer {
    display: flex;
    align-items: flex-start;
  }

  .footer-meta {
    display: block;
  }

  .social-links {
    padding-top: 4px;
  }
}
