@mixin title {
  display: flex;
  flex-flow: row nowrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;

  /* Добавляем отступ кнопке */
  button {
    margin-left: auto;
  }

  /* Убираем отступ у всех кнопок кроме самой левой */
  button ~ button {
    margin-left: unset;
  }
}

@mixin section-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 40px 30px 10px;

  h2 {
    margin: 24px 0;
  }
}
