/* JP-1529 follow-up — warehouse-management-software: remove the
   product-support section's own vertical padding on this page.

   The base rule paints the band's padding site-wide (theme/jtl/custom-clone.css:
   `.product-support-section { background-color: #eeeee7 !important; padding: 80px 0 }`).
   It is NOT !important, so this page-scoped selector (0,2,1) beats the base
   (0,1,0) on specificity alone — no !important needed, and the background is
   left untouched.

   Scope: body.page-id-93818 is the DE original's body class, which WPML also
   stamps onto the EN twin, so one selector covers BOTH
   /de/lagerverwaltung-software/ (page 93818) AND
   /en/warehouse-management-software/ (page 262922) — the same scope the
   JP-1529 spacing sheet uses. Page-scoped only; no other page changes. */
body.page-id-93818 .product-support-section {
    padding-top: 0;
    padding-bottom: 0;
}
