/* Center Step 5 under cards 3 & 4 on desktop without changing card styling */
@media (min-width: 1024px) {
  #home .steps-grid #step5 {
    grid-column: 1 / -1;     /* span both columns */
    justify-self: center;    /* center the card */
    width: min(100%, 640px); /* visually match half-width card */
  }
}

/* (Unrelated visual polish we already discussed) — only inside our modal */
#rm-backdrop .rm-dialog :focus {
  outline: none !important;
  box-shadow: none !important;
}
