/* ABOUT-MOBILE-FIX-0915D
   Root cause: the later desktop polish rule for .ip-why-grid appeared after the
   older mobile rule, so its two-column template won in the cascade on phones.
   Keep the approved desktop layout and force the About WHY section to stack
   at the existing tablet/mobile breakpoint. */
@media (max-width: 900px) {
  .ip-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ip-why-grid > div,
  .ip-why-visual {
    min-width: 0;
    width: 100%;
  }
}
