.service-hub-main {
  width: min(1480px, calc(100% - 40px));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 54px 0 80px;
}

.service-hub-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-hub-heading h1 {
  margin: 8px 0 10px;
  font-size: clamp(2.15rem, 4vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-hub-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-entry {
  min-height: 250px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 24px;
  padding: 28px;
  border: 1px solid rgba(0, 109, 119, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(22, 62, 66, 0.08);
}

.service-entry-index {
  grid-row: 1 / -1;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.service-entry-copy {
  align-self: start;
}

.service-entry-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-entry h2 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  letter-spacing: 0;
}

.service-entry-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-entry-status,
.service-entry-action {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  font-weight: 800;
}

.service-entry-action {
  color: var(--accent);
}

.service-entry.is-active {
  border-color: rgba(0, 137, 152, 0.55);
  background: rgba(235, 250, 249, 0.88);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-entry.is-active:hover,
.service-entry.is-active:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 22px 52px rgba(0, 109, 119, 0.16);
  transform: translateY(-2px);
  outline: 3px solid rgba(0, 143, 178, 0.16);
  outline-offset: 2px;
}

.service-entry.is-disabled {
  border-style: dashed;
  background: rgba(247, 249, 249, 0.72);
}

.service-entry.is-disabled .service-entry-index,
.service-entry.is-disabled .service-entry-kicker,
.service-entry.is-disabled .service-entry-status {
  color: var(--muted);
}

@media (max-width: 760px) {
  .service-hub-main {
    width: min(100% - 24px, 720px);
    padding: 32px 0 56px;
  }

  .service-entry-grid {
    grid-template-columns: 1fr;
  }

  .service-entry {
    min-height: 210px;
    padding: 22px 18px;
    column-gap: 16px;
  }
}
