.features-scroll {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.features-scroll > * {
  scroll-snap-align: start;
}
