/* JR Mobile How-To Box Height Override
   Targets: When the How-To panel is open (body.jr-mt-open-howto), enforce the intended height on mobile.
   Notes: Extra specificity + !important + late enqueue (9999) to beat conflicts.
*/

@media (max-width: 768px) {
  body.jr-mt-open-howto aside.jr-htu2-panel,
  body.jr-mt-open-howto aside.jr-htu2-panel[aria-label="How to use"],
  body.jr-mt-open-howto aside.jr-htu2-panel[style] {
    max-height: none !important;
    height: 370px !important; /* NEW */
    min-height: 0 !important;
    overflow: auto !important;
  }
}
