/* ============================================================
   VoiceX — Internal Solutions & Products page typography fix
   Linked ONLY on the internal Solutions/Products pages (never on
   index.html). Heading size/line-height is now handled globally in
   light-theme.css (applies site-wide); this file only carries the
   fixes specific to these 18 pages: paragraph rhythm and the
   section-subtitle bug below.
   ============================================================ */

/* ---- Paragraph / description copy: consistent size & rhythm ---- */
[class*="desc"]{
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

/* ---- Bug fix: on white-labeling.html ".section-subtitle" is used for
   body paragraphs, but a same-named rule elsewhere in style.css (meant
   for a small eyebrow label) leaks in and renders it bold/uppercase/
   off-color. Force normal paragraph styling wherever this class is
   used on a <p> (the eyebrow usage elsewhere is on a <div>, so it is
   untouched). ---- */
p.section-subtitle{
  text-transform: none !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  color: var(--muted) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}
