.footer-social {
  margin-top: 24px;
}

.footer-social h2,
.contact-social-panel h3 {
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.social-link svg {
  display: block;
  width: 21px;
  height: 21px;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.social-link:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.contact-social-panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--ink);
  color: var(--white);
}

.contact-social-panel .eyebrow {
  color: var(--blue-light);
}

.contact-social-panel p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #cbd5e1;
}

@media (max-width: 420px) {
  .social-links {
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }
}
