Make archive hero margin responsive

- No margin below hero on mobile/tablet (< 1200px)
- 2rem margin below hero on desktop (>= 1200px)
- Consistent hero styling across all interior pages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hanson.xyz Dev
2025-12-01 00:41:30 -06:00
parent cf0debb970
commit ea2be47f99
3 changed files with 6 additions and 3 deletions
-1
View File
@@ -1 +0,0 @@
55392
File diff suppressed because one or more lines are too long
@@ -13,7 +13,11 @@
background-repeat: no-repeat;
padding: 3rem 0;
border-bottom: 1px solid var(--color-border);
// No margin on mobile/tablet, margin on desktop
@media (min-width: 1200px) {
margin-bottom: 2rem;
}
// When has background image
&.has-background {