.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper-strong);
}

.service-item {
  min-height: 238px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease, transform 160ms ease;
}

.service-item:hover {
  background: #f2f6ef;
  transform: translateY(-2px);
}

.service-icon {
  width: 34px;
  height: 34px;
  color: var(--teal);
  margin-bottom: 1.15rem;
}

.service-item h3 {
  margin-bottom: 0.65rem;
}

.service-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}
