/* =========================================================
   MoveDone Update 047
   Final Local Businesses CTA positioning polish
   ========================================================= */

.md047-business-cta {
  /* Move right, and only slightly lower than the current position */
  transform: translate(35px, 40px) !important;

  /* Trim roughly 60px from the card width */
  width: calc(100% - 60px) !important;
  max-width: calc(100% - 60px) !important;
  margin-left: auto !important;
}

/* Medium screens: keep the adjustment gentler */
@media (max-width: 1200px) {
  .md047-business-cta {
    transform: translate(24px, 32px) !important;
    width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
  }
}

/* Mobile returns to the natural stacked layout */
@media (max-width: 760px) {
  .md047-business-cta {
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}
