/*
 * HelloBLOOM V1.1 site-wide text size.
 * Keep body/control text readable without flattening headings or compact UI structure.
 */
:root {
  --hb-site-text-size: 1.08rem;
  --hb-site-control-text-size: 1.08rem;
  --hb-site-compact-text-size: 1rem;
  --hb-site-small-text-size: var(--hb-site-compact-text-size);
}

body {
  font-size: var(--hb-site-text-size);
}

body :where(
  a,
  button,
  input,
  select,
  textarea,
  label,
  summary,
  p,
  li,
  td,
  th
) {
  font-size: var(--hb-site-text-size) !important;
}

body :where(
  div,
  span,
  strong,
  em,
  small
) {
  font-size: inherit;
}
