From 55e22c0ac19b72eba73a018bb19ea3786016bf28 Mon Sep 17 00:00:00 2001 From: nathalie-ckc Date: Wed, 19 Aug 2026 09:42:54 -0700 Subject: [PATCH 1/2] Update WGNews.astro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The links are showing up left-justified whereas the rest of the text in the news component is showing up center justified. Following GitHub Copilot's guidance to add centering classes to the links container. Why don't I see "justify-center" on any of the "headline" or "body" containers? Copilot's answer: because those elements are being centered by text alignment, not by flex alignment. headline (

) and body (

) are plain block/text elements. They’re centered via a parent with text-center (or inherited centering), which affects inline text. justify-center only works on flex/grid containers to align child items along the main axis. So for your links: The