From f309a90e1f1ad7f460cfaf64ae35b48e07cf12cc Mon Sep 17 00:00:00 2001 From: popovskik Date: Wed, 5 Aug 2026 18:52:21 +0200 Subject: [PATCH] About Us hero: align overlaid title to the top (off people's faces) Switch the hero content from vertical-centre to top-aligned so the title/text sit in the upper background area of the rotating group photos instead of over faces. Co-Authored-By: Claude Opus 4.8 (1M context) --- css/pages/_about.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/pages/_about.css b/css/pages/_about.css index d26dee9a..d4c1656f 100644 --- a/css/pages/_about.css +++ b/css/pages/_about.css @@ -468,7 +468,8 @@ .about-hero { position: relative; left: 50%; transform: translateX(-50%); width: 100vw; min-height: clamp(440px, 60vw, 640px); - display: flex; align-items: center; justify-content: center; text-align: center; + /* Align text to the upper area so it sits above people's faces, not over them. */ + display: flex; align-items: flex-start; justify-content: center; text-align: center; overflow: hidden; margin: 0 0 8px; } .about-hero-slide {