/**
 * jp-434-home-quote-spacing.css — Home "Success Story" quote section spacing
 *
 * Scope: ONLY `body.home` `section.home-quote-section`.
 * Page:  https://dev-jtl.betterscale.dev/de/
 * Figma: 163:4630 "Quote-no-box-Desktop 1440" (padding px-64 py-80)
 * Jira:  JP-434 (Home cascade sweep — this section was added in #88)
 *
 * Bug: #88 set `section.home-quote-section { padding: 80px 64px; }` to match
 * the Figma py-80, but the inner Bootstrap `.container` already contributes
 * 64px top/bottom on this template. Net vertical inset became 80 + 64 = 144px
 * (top) and the same at the bottom, instead of the intended 80px — so a
 * ~288px dead gap opened between the JTL-Community section's "Beratung
 * vereinbaren" CTA above and the "SUCCESS STORY" quote here.
 *
 * Fix: zero the container's redundant vertical padding so the section's own
 * 80px is the single source of vertical inset (matches Figma py-80). The
 * horizontal 64px stays on the section; the container keeps its horizontal
 * gutters. Body-scoped so no other page that reuses `.container` is touched.
 */

body.home section.home-quote-section > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
