Horizontal Overflow Fix - Visual Demonstration

❌ Before Fix

OVERFLOW
This element extends beyond viewport

Content extends past the edge →

← Horizontal Scrollbar →
Viewport Width: 375px
Content Width: 412px
Overflow: 37px ❌
@mixin full-bleed {
  width: 100vw;  ❌
  margin-left: -50vw;  ❌
  // Includes scrollbar width
  // = 375px + 17px = 392px
}

✅ After Fix

NO OVERFLOW
This element fits perfectly

Content stays within bounds ✓

Viewport Width: 375px
Content Width: 375px
Overflow: 0px ✓
@mixin full-bleed {
  width: 100%;  ✓
  max-width: 100%;  ✓
  margin-left: -50%;  ✓
  overflow-x: hidden;  ✓
  // Container-relative
  // = 375px (exact)
}

Key Fixes Applied

Genesis Theme - Horizontal Overflow Fix

Version 1.0.0 | 2026-02-04