/* Two buttons — inline: flex wrap side by side */
.button-block--two-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Two buttons — max: each button on its own line */
.button-block--two-max a + a {
  margin-top: 1rem;
}
