/* Progressive loading for testimonial & mastermind cards */
.tc-lazy {
  opacity: 0 !important;
  transform: translateY(50px) scale(0.98) !important;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}
.tc-lazy.tc-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Carousel: symmetric fade on both edges */
.carousel-track {
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 5%,
    rgb(0, 0, 0) 95%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 5%,
    rgb(0, 0, 0) 95%,
    rgba(0, 0, 0, 0) 100%
  ) !important;
}
