/*
 * "How it works" timeline (eltdf workflow) — responsive fix.
 * When the timeline collapses out of its desktop zig-zag (tablet/mobile), the
 * theme leaves some step images left-aligned (notably Steps One and Four),
 * which reads as "not centered". Center every step image once stacked.
 */
@media (max-width: 1024px) {
  .eltdf-workflow-image {
    text-align: center !important;
    float: none !important;
    width: 100% !important;
  }
  .eltdf-workflow-image img {
    float: none !important;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
