section#services,
section#services.services,
section#services.section,
#services.services,
#services.section,
.services {
  background: #fff;
  background-color: #fff;
  background-image: none;
  color: #111;
  padding: 64px 0 72px;
  margin: 0;
  border: 0;
  box-shadow: none;
  outline: none;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

section#services::before,
section#services::after {
  content: none;
  display: none;
}

.services__head {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 32px;
  row-gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}

.services__copy {
  display: contents;
}

.services__copy h2 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: #111;
  font-family: var(--sans, "Outfit", Arial, sans-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-transform: none;
}

.services__lede {
  grid-column: 1;
  grid-row: 2;
  max-width: 46ch;
  margin: 0;
  color: #6b6b6b;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
}

.services__all {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  margin: 0;
  color: #111;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.services__all::after {
  content: " \2192";
  letter-spacing: 0;
}

.services__all:hover {
  color: var(--red, #E10600);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

.services__card {
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.services__media {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.services__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.services__ph {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 42%, #d9dde3 0 28%, transparent 29%),
    linear-gradient(180deg, #f4f5f7 0%, #e4e7ec 100%);
}

.services__card h3 {
  margin: 12px 0 0;
  color: #111;
  font-family: var(--sans, "Outfit", Arial, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.services__card p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: #6b6b6b;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }
}

@media (max-width: 640px) {
  section#services,
  section#services.services,
  section#services.section,
  #services.services,
  #services.section,
  .services {
    padding: 48px 0 56px;
    background: #fff;
    background-color: #fff;
    background-image: none;
  }

  .services__head {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .services__all {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }
}
