/* Hide all tel: links and common wrappers */
a[href^="tel:"],
button[href^="tel:"],
a[aria-label*="Ring oss" i],
button[aria-label*="Ring oss" i] {
  display: none !important;
}

/* If a wrapper has a tel link inside (e.g., a Button > a[href^="tel:"]), hide the wrapper by hiding the anchor */
a[href^="tel:"], a[href^="tel:"] * {
  pointer-events: none !important;
}
a[href^="tel:"] {
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}