/* Social links - footer */

.site-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-social-link svg {
  width: 1rem;
  height: 1rem;
}

.site-social-link:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.75);
  outline-offset: 2px;
}

.site-social-links--footer .site-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

.site-social-links--footer .site-social-link:hover {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(51, 132, 252, 0.15);
  color: #fff;
}

.site-footer-social-group {
  margin-top: 1.5rem;
}

.site-footer-social-label {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94a3b8;
}

.site-footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
