.services-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  position: relative;
  z-index: 5;
  gap: 4px;
}

.services-list-item {
  display: flex;
  padding: 40px 0;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: transparent;
  transition: background-color 0.4s ease;
  width: 100%;
  position: relative;
}

.services-list-title {
  flex: 1 0 0;
}

.services-list-number {
  color: var(--black_white50);
  display: flex;
  align-items: center;
  width: 117px;
}

.services-list-link {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black_white50);
  text-decoration: none;
  gap: 50px;
}

/* Arrow */
.services-list-arrow img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.services-list-arrow {
  display: flex;
  width: 150px;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

/* Hover */
.services-list-number,
.services-list-arrow {
  transition: transform 0.4s ease, color 0.4s ease;
}

.services-list-item:hover {
  background: var(--primary500, #3c4ac1);
  border-radius: 8px;
}

.services-list-item:hover .services-list-number {
  transform: translateX(48px);
}

.services-list-item:hover .services-list-arrow {
  transform: translateX(-50px);
}

/* Service archive page service-list */
.services-archive {
  .service-item-content-wrapper {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .body-md-regular {
    color: var(--neutral300);
  }
  .services-list-item:hover .body-md-regular {
    color: var(--black_white50);
  }
  .services-list-number {
    color: var(--black_white50);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .services-list-link {
    gap: 10px;
    width: 100%;
  }
}

@media (max-width: 880px) {
  .services-list-arrow {
    width: auto;
  }

  .services-list-item {
    flex-direction: column;
    align-items: start;
    gap: 4px;
    padding: 24px 0;
  }

  .services-list-item:hover {
    background: transparent;
  }

  .services-list-item:hover .services-list-number,
  .services-list-item:hover .services-list-arrow {
    transform: none;
  }

  .services-list-arrow img {
    width: 24px;
    height: 24px;
  }
}
