.service-highlights {
  display: block;
  color: var(--service-highlights-text);
  background: var(--service-highlights-background);
}

.service-highlights__inner {
  width: 100%;
  padding-inline: clamp(24px, 8vw, 180px);
}

.service-highlights__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 14px 0;
  margin: 0;
  list-style: none;
}

.service-highlights__item {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.service-highlights__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
}

.service-highlights__icon svg {
  width: 100%;
  height: 100%;
}

.service-highlights__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .service-highlights__inner {
    padding-inline: 0;
  }

  .service-highlights__list {
    display: flex;
    gap: 0;
    min-height: 58px;
    padding: 14px 0 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-highlights__list::-webkit-scrollbar {
    display: none;
  }

  .service-highlights__item {
    flex: 0 0 100%;
    justify-content: center;
    padding-inline: 24px;
    scroll-snap-align: center;
  }

  .service-highlights__icon {
    width: 23px;
    height: 23px;
  }

  .service-highlights__text {
    font-size: 13px;
    white-space: nowrap;
  }

}

@media (max-width: 479px) {
  .service-highlights__item {
    padding-inline: 18px;
  }
}
