/* Bento Video Section – Mobile & Touch polish
   Keeps the Apple-style interaction calm, but prevents hover/transform conflicts on touch devices. */

.bento-card {
  transform-origin: center center;
  will-change: transform;
}

.bento-card a,
.bento-card button {
  touch-action: manipulation;
}

.bento-video-control {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
  .bento-insights-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .bento-insights-grid {
    gap: 1rem;
  }

  .bento-card {
    min-height: auto !important;
    border-radius: 2rem;
  }

  .bento-card-title {
    max-width: 12ch;
  }

  .bento-video-control {
    width: 3rem;
    height: 3rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .bento-card {
    min-height: 30rem !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .bento-card:hover,
  .bento-video-control:hover {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-card,
  .bento-video-control {
    transition: none !important;
  }
}
