/* v11.15 — Approved Chinese line composition and separated service links */

/* Preserve the requested Chinese line placement without changing global heading sizes. */
body.zh [data-lang="zh"].zh-fixed-lines,
html[lang^="zh-Hant"] .zh-fixed-lines,
html[lang^="zh-Hans"] .zh-fixed-lines {
  display: block;
  text-wrap: initial;
}

.zh-fixed-lines > span {
  display: block;
  white-space: nowrap;
}

/* Prevent adjacent service-navigation links from appearing as one sentence. */
.page-service-detail .service-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 28px;
  row-gap: 10px;
  margin-top: 24px;
}

.page-service-detail .service-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
  color: var(--pine);
  font-weight: 790;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

@media (max-width: 620px) {
  .page-service-detail .service-nav {
    column-gap: 20px;
    row-gap: 6px;
    margin-top: 20px;
  }
}
