@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 20px 30px 0;
}
