from pathlib import Path ROOT = Path(__file__).resolve().parents[2] def test_export_handoff_cards_use_width_aware_grid() -> None: css = (ROOT / "frontend" / "src" / "styles" / "app.css").read_text(encoding="utf-8") assert ".handoff-action-grid" in css assert "repeat(auto-fit, minmax(11rem, 1fr))" in css assert ".export-center .handoff-readiness-grid" in css assert "repeat(auto-fit, minmax(7.5rem, 1fr))" in css def test_public_readme_documents_desktop_and_mobile_workspace() -> None: readme = (ROOT / "README.md").read_text(encoding="utf-8") assert "geointel-workbench-wide.png" in readme assert "geointel-workbench-mobile.png" in readme assert "Mobiele werkruimte" in readme