/* ==========================================================================
   321 Study — plan landing pages (one/three/six-month access).
   Shared by pages/one-month-access.php, three-month-access.php and
   six-month-access.php. Hover states ported from the dc style-hover attrs.
   ========================================================================== */

/* Course card: style-hover="transform: translateY(-4px); box-shadow: 0 14px 36px rgba(10,10,10,0.1)"
   (the 240ms transition is inline on the article, verbatim from the source). */
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.1);
}

/* "In cart — view →" link: style-hover="color: var(--color-primary-hover)" */
.plan-incart:hover { color: var(--color-primary-hover); }

/* Cross-plan strip links: style-hover="background: var(--bg-alt)" */
.plan-strip-link:hover { background: var(--bg-alt); }
