Media is the heaviest part of a feed.
Image optimization:
- Serve responsive images (srcset)
- Use WebP with JPEG fallback
- Lazy load images below fold
- Show placeholder while loading
Video handling:
- Don't autoplay with sound
- Load video only when in viewport
- Show thumbnail until play
Layout stability:
- Reserve space with aspect ratio
- Prevent layout shift as images load
.media-container { aspect-ratio: 16/9; }