From aafea6834297e6856cc41300bd3584bd4af02f54 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sun, 5 Jul 2026 11:01:06 -0500 Subject: [PATCH] feat(blog): style the post card body, title, byline, and Read more link --- styles/components/post-list.css | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/styles/components/post-list.css b/styles/components/post-list.css index 73d4d01..d809a6f 100644 --- a/styles/components/post-list.css +++ b/styles/components/post-list.css @@ -9,3 +9,38 @@ margin: 0 0 2rem; text-align: left; } + +.post-list__post { + border-color: var(--color-cwc-blue-03); + overflow: hidden; +} + +.post-list__img { + border-bottom: 0; +} + +.post-list__details { + background: var(--color-cwc-blue-03); + color: var(--color-cwc-blue-01); +} + +.post-list__title { + color: var(--color-cwc-blue-01); + font-weight: 700; +} + +.post-list__byline { + color: var(--color-cwc-blue-01); + font-size: 0.875rem; +} + +.post-list__read-more { + color: var(--color-secondary); + font-weight: 600; + margin-top: 0.75rem; + text-decoration: none; +} + +.post-list__read-more:hover { + text-decoration: underline; +}