#services {
  padding: var(--section-padding);
  background: var(--grey-1);
}
.services-header {
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--black);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-left: 2px solid transparent;
  transition: border-color var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-left-color: var(--white);
  }
}

.service-number {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--grey-2);
  line-height: 1;
}
.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.service-desc {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--grey-4);
  line-height: 1.7;
  margin-top: 16px;
}
.service-examples {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-3);
  line-height: 1.8;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.card-line {
  margin-top: auto;
  padding-top: 32px;
}

/* Four of the six cards are links now. Reset the anchor so a linked card is
   indistinguishable from a static one. */
a.service-card {
  text-decoration: none;
  color: inherit;
}
