If I visit the Julia LT demo and I have a resolution below 768px, the Recipes area does not correctly adjusts to the new layout: https://user-images.githubusercontent.com/53944294/180409910-a8ba1404-a2c8-4859-b1f1-450bd9b9e0aa.mp4 Temp fix ``` @media (max-width: 768px) { .recipe-content { grid-template-areas: "sidebar-header sidebar-header" "sidebar-header2 sidebar-header2" "content content" "sidebar-footer sidebar-footer" "footer footer"; } } ```