Challenge 3: What "Just Consistent Padding" Misses About Auto Layout — Solution Walkthrough The answer: Per this chapter's own warning box, Auto Layout is a live, continuously recalculated arrangement engine, much closer in spirit to a CSS flexbox layout than to a one-time manual arrangement. Describing it as "padding you set once" captures only the padding/gap settings themselves, missing that the entire arrangement recalculates automatically every time content actually changes. Why the "set once" framing misses the real point: A one-time padding setting is static — it looks right at the moment it's applied and stays that way regardless of what happens afterward. Auto Layout instead keeps recalculating continuously: a longer label, an added list item, or a resized parent all trigger the arrangement to update automatically, with no manual re-adjustment needed each time. Why this distinction matters: The colleague's description would lead someone to expect Auto Layout to behave like a static setting that might eventually need manual touch-ups as content changes. Its actual value is exactly the opposite — it's built to keep the layout correct continuously, as content keeps changing, which is the genuinely different problem this chapter says it's solving. WHY THIS WORKS AS AN ANSWER ------------------------------ This exercise checks that Auto Layout's continuous, live recalculation is correctly distinguished from a one-time static padding setting, per this chapter's own warning box.