/* VITALIS IV shared typography system
   Matches the homepage: Playfair Display for headings and a clean system sans-serif for all interface/body text. */
:root {
  --vitalis-font-serif: "Playfair Display", Georgia, serif;
  --vitalis-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html,
body,
button,
input,
select,
textarea,
option,
label {
  font-family: var(--vitalis-font-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.hero-title,
.page-title,
.section-title,
.modal-title {
  font-family: var(--vitalis-font-serif) !important;
}

/* Prevent long information such as email addresses and portal URLs from
   overflowing their cards or pushing into adjacent content. */
.vitalis-wrap-safe,
.vitalis-wrap-safe a {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
