/* ═══════════════════════════════════════
   Social Proof Section — Supplementary Styles
   Most styling is inline (HonoX pattern).
   This file adds hover effects and transitions
   that require pseudo-classes.
   ═══════════════════════════════════════ */

/* Testimonial card hover lift effect */
.enhanced-social-proof-section .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ld-glow-highlight, 0 14px 40px rgba(26, 26, 46, 0.12));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enhanced-social-proof-section .testimonial-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* User count banner responsive */
@media (max-width: 768px) {
  .user-count-banner .user-count-banner__content {
    flex-direction: column;
    gap: 8px;
  }
}
