From d50276adca46aae0fb25b0c75fbab28406dadecf Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 26 Nov 2025 23:15:45 +0100 Subject: [PATCH] style: align explore width with reader --- src/styles/components/cards.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/styles/components/cards.css b/src/styles/components/cards.css index 7d7ded70..de251e2f 100644 --- a/src/styles/components/cards.css +++ b/src/styles/components/cards.css @@ -263,7 +263,12 @@ .large-read-button:hover { background: var(--color-primary-hover); } /* Blog cards (Explore) */ -.explore-container { padding: 2rem; max-width: 1400px; margin: 0 auto; min-height: 100vh; } +.explore-container { + padding: 2rem; + max-width: var(--main-max-width); + margin: 0 auto; + min-height: 100vh; +} .explore-header { text-align: center; margin-bottom: 3rem; } .explore-header h1 { font-size: 2.5rem; margin: 0 0 1rem 0; color: var(--color-primary); display: flex; align-items: center; justify-content: center; gap: 1rem; } .explore-subtitle { font-size: 1.125rem; color: var(--color-text-secondary); margin: 0; }