/* HKS top page: make the complete service summary area a clear, usable link. */
#services .service-links > .service-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-block-size: 88px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

#services .service-links > .service-link:hover {
  background: #eef6fc;
  border-color: #a9c9df;
}

#services .service-links > .service-link:focus-visible {
  background: #eef6fc;
  border-color: #0b67b2;
  outline: 3px solid #0b67b2;
  outline-offset: 3px;
  position: relative;
  z-index: 1;
}

#services .service-links > .service-link:active {
  background: #dceef9;
}

@media (max-width: 560px) {
  #services .service-links > .service-link,
  #services .service-links > .service-link:nth-child(-n + 3) {
    min-block-size: 76px;
    padding: 14px 16px;
  }
}
