/* Mobile UI v33 — Cases: condense the top.
   The three category cards stack full-width with two-line descriptions,
   pushing the case list far down. Collapse them to a compact 3-up strip
   (icon, count, short label) and drop the page/section descriptions that
   only repeat what the headings already say. */
@media (max-width: 760px) {
  .open-issues-page .open-issue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin: 10px 0 !important;
  }
  .open-issues-page .open-issue-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    min-height: 0 !important;
    padding: 8px 4px !important;
    text-align: center !important;
    box-shadow: none !important;
    border-left: 1px solid #d6e0e7 !important;
  }
  .open-issues-page .open-issue-card > div { order: 1 !important; }
  .open-issues-page .open-issue-card > div > p { display: none !important; }
  .open-issues-page .open-issue-card > div > strong {
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
  }
  .open-issues-page .open-issue-icon { display: none !important; }
  .open-issues-page .open-issue-count {
    min-width: 24px !important;
    height: 24px !important;
    font-size: 13px !important;
  }
  .open-issues-page .open-issue-arrow { display: none !important; }

  .open-issues-page > .ui-page-header .ui-page-header-row p.muted { display: none !important; }
  .open-issues-page .open-ai-cases-heading p.muted { display: none !important; }
}
