/* Microsite Footer Social Media Links */
.microsite-footer-socials {
  display: flex;
  gap: var(--spacing-2);
  margin: var(--spacing-3) 0;
}

.microsite-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--footer-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.microsite-footer-social-link:hover {
  background: var(--color-brand);
  color: white;
  transform: translateY(-2px);
}

.microsite-footer-social-icon {
  width: 20px;
  height: 20px;
}