/* =====================================================================
   testimonials-home.css — presentation tweaks for the homepage
   testimonials block (melody-magic/testimonials) on page 378.

   Coupled with the block: enqueued via wp_enqueue_block_style so it loads
   only when the block renders (front-end + editor), never globally. Kept
   out of homepage.css on purpose — section styling belongs with its block,
   not the shared monolith, and it keeps concurrent editors from colliding.

   Scoped under .mm-testimonials so it doesn't touch the /testimonials/ page
   grid (.mm-testimonials-page).
   ===================================================================== */

/* Center the header (base rule is a left-aligned space-between flex row). */
.mm-testimonials .mm-testimonials__header {
    justify-content: center;
    text-align: center;
}
.mm-testimonials .mm-testimonials__heading {
    margin-inline: auto;
}

/* Taller cards — more top/bottom padding (was 32px / 28px). */
.mm-testimonials .mm-quote-card {
    padding-top: 44px;
    padding-bottom: 40px;
}

/* More breathing room above the "Read more from our families" link
   (base margin-top was --mm-s-8 = 32px). */
.mm-testimonials .mm-testimonials__see-all {
    margin-top: 56px;
}
