/*
 * WVU Divi Custom Modules – hotfix overrides
 *
 * Fix: iOS Safari “data detectors” can auto-link phone numbers in the subtitle.
 * When the subtitle heading is styled as a flex container, iOS may split the
 * number into a separate flex item and reflow it oddly (e.g. pushed to the right).
 *
 * We force the subtitle to behave like normal flowing text and ensure detected
 * phone numbers inherit typography.
 */

.wvu_fullwidth_hero_service_home .heading-subtitle,
.wvu-fullwidth-hero-service-home .heading-subtitle {
  display: block;
}

/* Keep iOS data-detector anchors from behaving like special inline-block widgets */
.wvu_fullwidth_hero_service_home .heading-subtitle a[x-apple-data-detectors],
.wvu_fullwidth_hero_service_home .heading-subtitle a[href^="tel:"],
.wvu-fullwidth-hero-service-home .heading-subtitle a[x-apple-data-detectors],
.wvu-fullwidth-hero-service-home .heading-subtitle a[href^="tel:"] {
  display: inline;
  color: inherit !important;
  text-decoration: inherit !important;
  font: inherit;
  white-space: normal;
}
