actions.html
<div class="actions">
  <a class="button -outline" href="#">Learn More</a>
  <a class="button" href="#">Sign Up</a>
</div>
_index.scss
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;

  &__action {
    margin-bottom: 0;
  }

  &.-spaceBetween {
    align-items: center;
    justify-content: space-between;
  }
}