/**
 * WordPress-only overrides — html.platform-wp is set in wp-theme/vacuflow/header.php only.
 * Static HTML never links this file.
 */

/*
 * Plugins (Real Cookie Banner / Hostinger helpers) sometimes dump JS as a bare
 * text node under <body>. body is display:flex; column — that text becomes an
 * anonymous flex item sized to body line-height (~30px) and shows up as
 * document scroll slack below #section-footer ("levitating" footer).
 * Zero the body strut; restore type on element children only.
 */
html.platform-wp body {
  font-size: 0;
  line-height: 0;
}

html.platform-wp body > * {
  font-size: var(--text-md);
  line-height: var(--text-md-line-height);
}
