.text-with-icons__item.ds-text-with-icons__item.horizontal {
  grid-template-columns: max-content auto;
  align-items: center;
}

.text-with-icons__item.ds-text-with-icons__item.justify-center {
  justify-self: center;
}

.text-with-icons__list.ds-text-with-icons__list.desktop {
  display: grid;
}

.text-with-icons__list.ds-text-with-icons__list.mobile {
  display: none;
}

@media screen and (max-width: 1149px) {
  .text-with-icons__list.ds-text-with-icons__list.desktop {
    display: none;
  }

  .text-with-icons__list.ds-text-with-icons__list.mobile {
    display: grid;
  }
}