section[data-module="footer-social"] .social-icons {
  display: flex;
  flex-direction: row;        /* ✅ 水平排列 */
  justify-content: center;
  align-items: center;
  gap: 24px;
}

/* ✅ Font Awesome 图标默认白色 */
/* 一开始是白色 */
section[data-module="footer-social"] .social-icons a {
  color: #fff !important;
  transition: color 0.3s ease;
}

/* Hover 时变成 #43A5A6 */
section[data-module="footer-social"] .social-icons a:hover {
  color: #43A5A6 !important;
}


/* ✅ 小红书图标默认白色 (通过滤镜) */
section[data-module="footer-social"] .social-icons a img.xiaohongshu-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);  /* ✅ 变白色 */
  transition: all 0.3s ease;
}

/* ✅ hover 时变 #43A5A6 (模拟) */
section[data-module="footer-social"] .social-icons a:hover img.xiaohongshu-icon {
  filter: brightness(0) saturate(100%) invert(58%) sepia(16%) saturate(572%) hue-rotate(133deg) brightness(93%) contrast(87%);
}

/* ✅ Mobile 也保持横向 */
@media (max-width: 800px) {
  section[data-module="footer-social"] .social-icons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
