/* Gatus v5.36.0 has no hide-response-time, so the figure on the card is hidden
  here. Presentation, not secrecy: oce is in Singapore, so its checks of the eu
  region cross a continent and a healthy eu would read as slow. The selector
  targets the title attribute EndpointCard.vue puts on that paragraph; e2e
  asserts the attribute still exists, so a Gatus upgrade that renames it fails
  the build rather than quietly unhiding the number. See ADR-0020. */
.endpoint-content p[title$="response time"] {
  display: none !important;
}
/* Endpoint detail pages are deliberately not routed: their API cannot be
  separated from the response-time API by a path prefix. Kill the link so
  nothing clicks through to a 404. */
.endpoint-header a {
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}
