.services__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.services__list {
  list-style: none;
  /* только вертикальные поля: margin-left занят выравниванием .section__content */
  margin-block: 0;
  padding: 0;
}

.service-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding-block: var(--space-6);
  border-top: var(--hairline);
}
.services__list .service-row:last-child { border-bottom: var(--hairline); }

.service-row__num {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.service-row__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-row__price {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.service-row__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out);
}
.service-row__arrow {
  color: var(--accent-ink);
  transition: transform var(--dur-base) var(--ease-out);
}
.service-row:hover .service-row__more { color: var(--text-body); }
.service-row:hover .service-row__arrow { transform: translateX(3px); }

@media (min-width: 768px) {
  .service-row {
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
  }
  .service-row__num {
    width: 72px;
    flex: none;
  }
  .service-row__body { flex: 1 1 auto; }
  .service-row__more {
    width: 160px;
    flex: none;
    justify-content: flex-end;
    margin-top: 0;
  }
}
