/* Services page: introductory points under the main heading */

.services-hero__points {
  display: grid;
  gap: 15px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-hero__points li {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.services-hero__points li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
}

@media (max-width: 760px) {
  .services-hero__points {
    gap: 18px;
    max-width: 100%;
  }

  .services-hero__points li {
    padding-left: 26px;
    font-size: 20px;
    line-height: 1.5;
  }

  .services-hero__points li::before {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 430px) {
  .services-hero__points li {
    font-size: 19px;
    line-height: 1.5;
  }
}
