/* Simple Menu widget — deliberately minimal: just enough to turn a <ul> of
   links into a row or a stacked list. No responsive behavior, no
   dropdown/mobile-toggle markup — this widget doesn't render any of that.
   flex-direction/justify-content/align-items are set per-instance by the
   widget's own "Diseño"/"Alineación" controls; gap handles spacing so
   there's no separate margin logic to flip between row and column. */
.induxo-simple-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.induxo-simple-menu-list a {
  text-decoration: none;
}
