/**
 * Bootstrap Utilities for Components
 * Hybrid Approach - Variables/mixins only, no compiled CSS
 */
.button-nav-block .button-nav--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
}
.button-nav-block .button-nav--row > * {
  flex: 1 1 100%;
}
@media (min-width: 576px) {
  .button-nav-block .button-nav--row > * {
    flex: 1 1 50%;
  }
}
@media (min-width: 768px) {
  .button-nav-block .button-nav--row > * {
    flex: 1 1 auto;
  }
}
@media (min-width: 992px) {
  .button-nav-block .button-nav--row > * {
    flex: 1 1 auto;
  }
}

/*# sourceMappingURL=style.css.map */