.steps-arrow {
width: auto !Important;
}

/* Parent container */
.actions {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;   /* auto-centers when 1 or 2 cards */
  gap: 30px !important;
}

/* Card box */
.actions .wp-block-uagb-info-box {
  background: #fff !important;
  padding: 20px !important;
  border-radius: 10px !important;
  border: 1px solid #e0e0e0 !important;   /* added border */
  box-sizing: border-box !important;
  flex: 1 1 calc(33.333% - 30px) !important;   /* max 3 cards per row */
  max-width: calc(33.333% - 30px) !important;
}

.actions h4.uagb-ifb-title {
    font-size: 20px !important;
}



/* Tablet – 2 per row */
@media (max-width: 768px) {
  .actions .wp-block-uagb-info-box {
    flex: 1 1 calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
  }
}

/* Mobile – 1 per row */
@media (max-width: 480px) {
  .actions .wp-block-uagb-info-box {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}