Back to Articles
26 min read

Content Strategy & Topic Authority: Architecting Information for Relevance

In the age of Answer Engines, isolated articles do not rank; ecosystems do. This guide explores the 'Hub and Spoke' model of content architecture, the necessity of rigorous content pruning (database hygiene), and the strategic deployment of evergreen assets to establish domain ownership.

Content Strategy & Fundamentals

CONTENT FUNDAMENTALS

Content Relevance

Content relevance measures how well your content matches user search intent and query context—search engines use semantic analysis, entity recognition, and topical scoring to determine if your page satisfies the searcher's needs better than competitors.

User Query: "best running shoes for flat feet" RELEVANCE SCORING: ┌─────────────────────────────────────────────────┐ │ Your Content Analysis │ ├─────────────────────────────────────────────────┤ │ ✓ Primary keyword match → +25 points │ │ ✓ Related entities found → +20 points │ │ (arch support, pronation, stability) │ │ ✓ Intent alignment (buying) → +30 points │ │ ✓ Freshness (2024 models) → +15 points │ │ ✓ Depth (comparisons, specs) → +10 points │ ├─────────────────────────────────────────────────┤ │ RELEVANCE SCORE: 100/100 → High ranking │ └─────────────────────────────────────────────────┘

Keyword Placement

Strategic keyword placement involves positioning primary and secondary keywords in high-weight HTML zones (title tag, H1, first 100 words, subheadings, URL, meta description) while maintaining natural language flow—overstuffing triggers spam filters.

<!-- Optimal Keyword Placement Structure --> <title>Primary Keyword - Secondary Keyword | Brand</title> <meta name="description" content="Primary keyword in first 50 chars..."> <body> <h1>Primary Keyword with Modifier</h1> <p>First 100 words contain PRIMARY KEYWORD naturally...</p> <h2>Secondary Keyword Subheading</h2> <p>Supporting content with LSI keywords...</p> <h2>Related Keyword Subheading</h2> <img alt="primary keyword description"> </body> WEIGHT DISTRIBUTION: Title Tag ████████████████████ (Highest) H1 ███████████████████ URL ██████████████████ First 100w █████████████████ H2-H6 ██████████████ Body Text ████████ (Lowest)

Readability Basics

Readability measures how easily users can consume your content—aim for Flesch Reading Ease scores of 60-70 (8th-grade level), short sentences (15-20 words), short paragraphs (2-3 sentences), and active voice to reduce bounce rates and increase dwell time.

READABILITY FORMULA (Flesch-Kincaid): ┌────────────────────────────────────────────────────────┐ │ Score = 206.835 - 1.015(words/sentences) │ │ - 84.6(syllables/words) │ └────────────────────────────────────────────────────────┘ SCORE INTERPRETATION: 90-100 ████████████████████ 5th grade (Very Easy) 80-89 ████████████████ 6th grade 70-79 ████████████ 7th grade 60-69 ████████ 8th-9th (TARGET ✓) 50-59 ██████ 10th-12th 30-49 ████ College 0-29 ██ Expert (Too Hard) QUICK FIXES: ✗ "Utilize" → ✓ "Use" ✗ "In order to" → ✓ "To" ✗ "Due to the fact that" → ✓ "Because"

Content Formatting

Proper content formatting uses HTML semantic elements, visual hierarchy, and scannable structures (bullets, numbered lists, tables, blockquotes) to improve user experience signals and enable featured snippet extraction by search engines.

<!-- SEO-Optimized Formatting Structure --> <article> <h1>Main Topic</h1> <p class="intro">Hook paragraph with keyword...</p> <!-- Table of Contents (Jump Links) --> <nav class="toc"> <h2>Contents</h2> <ol> <li><a href="#section1">Section 1</a></li> </ol> </nav> <h2 id="section1">Section with Keywords</h2> <p>Short paragraph (2-3 sentences max).</p> <!-- Scannable Lists --> <ul> <li><strong>Key point:</strong> Explanation</li> <li><strong>Key point:</strong> Explanation</li> </ul> <!-- Data Tables for Snippets --> <table> <thead><tr><th>Feature</th><th>Value</th></tr></thead> <tbody><tr><td>Speed</td><td>100ms</td></tr></tbody> </table> <!-- Callouts --> <blockquote>Key takeaway quote</blockquote> </article> VISUAL HIERARCHY: H1 ═══════════════════════════════════ Intro paragraph... H2 ───────────────────────────────── • Bullet point • Bullet point H3 ∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙ Detailed content...

Duplicate Content Issues

Duplicate content occurs when identical or substantially similar content exists across multiple URLs—search engines waste crawl budget, dilute ranking signals, and may filter pages from results; fix with canonical tags, 301 redirects, or parameter handling in Search Console.

DUPLICATE CONTENT SCENARIOS: ┌──────────────────────────────────────────────────────────┐ │ Same content, multiple URLs: │ │ │ │ example.com/page │ │ example.com/page/ ←─┐ │ │ example.com/page?ref=123 │ ALL DUPLICATES! │ │ www.example.com/page │ │ │ example.com/PAGE ←───┘ │ └──────────────────────────────────────────────────────────┘ SOLUTIONS: ┌─────────────────────────────────────────────────────────┐ │ 1. Canonical Tag (preferred version) │ │ <link rel="canonical" href="https://example.com/page">│ │ │ │ 2. 301 Redirect (permanent move) │ │ /old-page → 301 → /canonical-page │ │ │ │ 3. Parameter Handling (Search Console) │ │ ?sort=price → "No, doesn't affect content" │ │ │ │ 4. Hreflang (international versions) │ │ <link rel="alternate" hreflang="en-us" href="..."> │ └─────────────────────────────────────────────────────────┘

Thin Content Problems

Thin content refers to pages with little substantive value—short word counts (<300 words), auto-generated text, doorway pages, or shallow affiliate content—that trigger Panda algorithm penalties and hurt site-wide quality scores; consolidate, expand, or noindex these pages.

THIN CONTENT IDENTIFICATION: ┌────────────────────────────────────────────────────────┐ │ PAGE AUDIT RESULTS │ ├────────────────────────────────────────────────────────┤ │ /product-123 │ 45 words │ ⚠️ THIN │ │ /category/shoes │ 120 words │ ⚠️ THIN │ │ /tag/blue │ 0 words │ 🔴 EMPTY │ │ /blog/guide │ 2,400 words│ ✅ HEALTHY │ │ /about │ 180 words │ ⚠️ THIN │ └────────────────────────────────────────────────────────┘ REMEDIATION STRATEGIES: ┌─────────────┬──────────────────────────────────────────┐ │ PROBLEM │ SOLUTION │ ├─────────────┼──────────────────────────────────────────┤ │ Short pages │ Expand with valuable content (500+ w) │ │ Tag pages │ Add <meta name="robots" content="noindex">│ │ Duplicates │ Consolidate into single authority page │ │ Low value │ Delete + 410 Gone or redirect │ │ Boilerplate │ Add unique, descriptive content │ └─────────────┴──────────────────────────────────────────┘

Content Freshness

Content freshness is a ranking factor where recency matters—Google's Query Deserves Freshness (QDF) algorithm boosts recently updated content for time-sensitive queries; update publish dates, add new information, and refresh statistics regularly for competitive topics.

FRESHNESS SIGNALS GOOGLE DETECTS: ┌─────────────────────────────────────────────────────────┐ │ • Page creation/modification date │ │ • Rate of content changes │ │ • New page creation velocity │ │ • Freshness of linking pages │ │ • User engagement with fresh vs stale content │ └─────────────────────────────────────────────────────────┘ QUERY TYPES & FRESHNESS IMPORTANCE: Freshness Matters Hot Topics (breaking news) ████████████████████ HIGH Recent Events ████████████████ Recurring Events ██████████████ Frequently Updated Topics ████████████ Product Reviews ████████ Evergreen Topics ████ LOW UPDATE STRATEGY: ┌──────────────────────────────────────────────────────┐ │ # Content Freshness Script │ │ Priority = (Search Volume × Decay Rate) / Age │ │ │ │ UPDATE SCHEDULE: │ │ ├── News/Trends → Weekly │ │ ├── Product Reviews → Quarterly │ │ ├── How-to Guides → Bi-annually │ │ └── Evergreen → Annually (verify accuracy) │ └──────────────────────────────────────────────────────┘

CONTENT STRATEGY

Content Pillars and Clusters

Content pillars are comprehensive hub pages covering broad topics that link to related cluster content (detailed subtopics), creating topical authority through internal linking architecture—this structure helps search engines understand your site's expertise hierarchy.

PILLAR-CLUSTER MODEL: ┌─────────────────────┐ │ PILLAR PAGE │ │ "Complete Guide to │ │ Email Marketing" │ │ (3000+ words) │ └──────────┬──────────┘ ┌─────────────────────┼─────────────────────┐ │ │ │ ▼ ▼ ▼ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ │ CLUSTER POST │ │ CLUSTER POST │ │ CLUSTER POST │ │ "Email Subject │ │ "Email List │ │ "Email │ │ Line Tips" │ │ Building" │ │ Automation" │ └────────┬────────┘ └────────┬────────┘ └────────┬────────┘ │ │ │ └───────────────────┴───────────────────┘ (interlinked clusters) INTERNAL LINKING PATTERN: Pillar ←→ All Clusters (bidirectional) Cluster ←→ Related Clusters (contextual) <!-- Example Link Structure --> <a href="/email-marketing-guide/">Email Marketing Guide</a> <!-- To Pillar --> <a href="/email-subject-lines/">Subject Line Tips</a> <!-- To Cluster -->

Topic Authority Building

Topic authority (E-E-A-T signals) is established by creating comprehensive, expert-level content across a subject area, earning backlinks from authoritative sources, and demonstrating real experience—Google rewards sites that become the definitive resource for their niche.

TOPICAL AUTHORITY MATRIX: ┌───────────────────────────────────────────────────────────┐ │ AUTHORITY SCORE │ │ │ │ Coverage ████████████████████ (Topic completeness) │ │ Depth █████████████████ (Expert-level detail) │ │ Backlinks ████████████████ (Quality citations) │ │ Experience ██████████████ (First-hand expertise) │ │ Engagement ████████████ (User signals) │ │ Freshness ██████████ (Updated content) │ │ Author E-A-T████████ (Credentials) │ └───────────────────────────────────────────────────────────┘ BUILDING AUTHORITY ROADMAP: ┌─────────────────────────────────────────────────────────┐ │ Phase 1: Foundation │ │ └── Create pillar content for core topics │ │ │ │ Phase 2: Expansion │ │ └── Build cluster content covering all subtopics │ │ │ │ Phase 3: Depth │ │ └── Add expert insights, original research, case studies│ │ │ │ Phase 4: Authority Signals │ │ └── Earn backlinks, citations, author bios, reviews │ └─────────────────────────────────────────────────────────┘

Content Calendars

A content calendar is a strategic planning document that schedules content production, publication, and promotion across topics, formats, and channels—it ensures consistent publishing velocity, seasonal optimization, and alignment with business goals and keyword opportunities.

CONTENT CALENDAR STRUCTURE: ┌────────────────────────────────────────────────────────────────────────┐ │ JANUARY 2025 │ ├──────┬──────────────┬───────────┬──────────┬──────────┬───────────────┤ │ Week │ Topic │ Keyword │ Type │ Status │ Publish Date │ ├──────┼──────────────┼───────────┼──────────┼──────────┼───────────────┤ │ 1 │ SEO Guide │ seo tips │ Pillar │ Writing │ Jan 6 │ │ 1 │ Meta Tags │ meta seo │ Cluster │ Planned │ Jan 8 │ │ 2 │ Link Build │ backlinks │ Cluster │ Outline │ Jan 13 │ │ 2 │ [Update] │ - │ Refresh │ Review │ Jan 15 │ │ 3 │ Technical SEO│ site speed│ Cluster │ Planned │ Jan 20 │ └──────┴──────────────┴───────────┴──────────┴──────────┴───────────────┘ CALENDAR COMPONENTS: ┌─────────────────────────────────────────────────────────┐ │ • Target keyword + search intent │ │ • Content type (pillar, cluster, update, prune) │ │ • Assigned writer + reviewer │ │ • Production status (ideation→outline→draft→review→pub)│ │ • Target publish date + promotion schedule │ │ • Performance goals (traffic, rankings, conversions) │ │ • Seasonal/trending alignment │ └─────────────────────────────────────────────────────────┘

Content Auditing

Content auditing is a systematic analysis of all site content to evaluate performance (traffic, rankings, engagement), quality (accuracy, depth, freshness), and SEO health (technical issues, cannibalization)—resulting in actionable decisions: keep, update, consolidate, or remove.

# Content Audit Process CRAWL → EXTRACT → ANALYZE → CATEGORIZE → ACTION AUDIT SPREADSHEET METRICS: ┌────────────────────────────────────────────────────────────────────────┐ │ URL │Sessions│Bounce│Backlinks│Words│Age │Rankings│ACTION │ ├────────────┼────────┼──────┼─────────┼─────┼───────┼────────┼─────────┤ │ /guide-a │ 5,20035% │ 45 │3200 │6 mo │ #3 │ KEEP │ │ /post-old │ 1289% │ 0340 │3 yr │ #89 │ REMOVE │ │ /tips-b │ 89052% │ 12 │1100 │18 mo │ #15 │ UPDATE │ │ /tips-c │ 45055% │ 8980 │12 mo │ #22 │ MERGE→B │ └────────────────────────────────────────────────────────────────────────┘ DECISION MATRIX: Traffic High Traffic Low ┌───────────────┬───────────────┐ Quality High │ KEEP │ PROMOTE │ (optimize)(build links) ├───────────────┼───────────────┤ Quality Low │ UPDATE │ REMOVE/MERGE │ (refresh)(consolidate) └───────────────┴───────────────┘

Content Pruning

Content pruning is the strategic removal or noindexing of low-value pages (thin content, outdated posts, zero-traffic pages) to improve overall site quality, crawl efficiency, and ranking potential—search engines reward sites that maintain only high-quality, relevant content.

PRUNING DECISION WORKFLOW: ┌─────────────────────────────────────────────────────────┐ │ Page meets criteria for review? │ │ (< 100 sessions/year, no backlinks, outdated) │ └────────────────────────┬────────────────────────────────┘ ┌─────────────────────┐ │ Has backlinks or │ │ ranking potential? │ └──────────┬──────────┘ YES/ \NO / \ ▼ ▼ ┌─────────┐ ┌─────────────┐ │ UPDATE │ │ Worth │ │ or │ │ redirecting?│ │ MERGE │ └──────┬──────┘ └─────────┘ YES/ \NO / \ ▼ ▼ ┌────────┐ ┌────────┐ │ 301 │ │ DELETE │ │REDIRECT│ │ +410 │ └────────┘ └────────┘ PRUNING CRITERIA CHECKLIST: □ < 10 organic sessions in 12 months □ No backlinks from external domains □ Not part of pillar/cluster structure □ Outdated (no longer accurate) □ Thin (< 300 words, low value) □ Duplicate or cannibalizing other pages □ High bounce rate + low time on page

Content Consolidation

Content consolidation merges multiple underperforming, related pages into a single comprehensive resource—this eliminates keyword cannibalization, combines link equity, and creates a stronger page that outranks the individual pieces ever could.

CONSOLIDATION EXAMPLE: BEFORE (Cannibalization): ┌─────────────────────────────────────────────────────────┐ │ /python-loops │ 800 words │ Rank #34 │ 5 links│ │ /python-for-loop │ 600 words │ Rank #28 │ 3 links│ │ /python-while-loop │ 550 words │ Rank #45 │ 2 links│ │ /loop-examples-python │ 400 words │ Rank #67 │ 1 link │ └─────────────────────────────────────────────────────────┘ ↓ CONSOLIDATE ↓ AFTER (Single Authority Page): ┌─────────────────────────────────────────────────────────┐ │ /python-loops-complete-guide │ │ • 2800+ words (comprehensive) │ │ • Rank #5 (combined authority) │ │ • 11 links (consolidated equity via 301s) │ │ • Covers: for, while, nested, examples │ └─────────────────────────────────────────────────────────┘ 301 REDIRECT MAP: /python-for-loop → 301 → /python-loops-complete-guide#for /python-while-loop → 301 → /python-loops-complete-guide#while /loop-examples-python → 301 → /python-loops-complete-guide#examples

Historical Optimization

Historical optimization is the practice of updating and improving existing content that has ranking potential but declining performance—refreshing statistics, adding new sections, improving structure, and updating dates can recover lost rankings faster than creating new content.

HISTORICAL OPTIMIZATION PROCESS: ┌─────────────────────────────────────────────────────────┐ │ 1. IDENTIFY CANDIDATES │ │ └── Posts ranked #5-20 with declining traffic │ │ └── High-impression, low-CTR pages (GSC data) │ │ └── Content older than 12 months │ │ │ │ 2. ANALYZE GAPS │ │ └── Compare to current top 3 ranking pages │ │ └── Find missing subtopics, keywords, sections │ │ └── Check for outdated information │ │ │ │ 3. UPDATE CONTENT │ │ └── Add new sections (increase word count 30%+) │ │ └── Update statistics, screenshots, examples │ │ └── Improve title tag for CTR │ │ └── Add FAQ schema, new internal links │ │ │ │ 4. REPUBLISH │ │ └── Update publish date │ │ └── Resubmit to Google Search Console │ │ └── Promote on social/email │ └─────────────────────────────────────────────────────────┘ TRAFFIC RECOVERY CHART: Traffic │ ╭───────────╮ │ ╭────╯ ╰────── Post-optimization │────╯ growth │ Original peak │ ╲ │ ╲ Decline │ ╲ │ ╲______ Pre-optimization │ ↑ └──────────────────────────────────────▶ Time Update Point

Evergreen Content Strategy

Evergreen content addresses timeless topics that maintain consistent search demand indefinitely—unlike trending content, evergreen pieces (how-to guides, definitions, tutorials) require minimal updates and provide compounding SEO value with sustained traffic growth over years.

EVERGREEN VS TRENDING CONTENT: Traffic │ ╱╲ Trending │ ╱ ╲ (News, Events) │ ╱ ╲ │ ╱ ╲ │ ╱ ╲____ │╱ ───────── │ ╱─────────────────────── Evergreen │ ╱ (Compounds over time) │ ╱ │──╱ └──────────────────────────────────────▶ Time EVERGREEN TOPIC TYPES: ┌─────────────────────────────────────────────────────────┐ │ ✓ "How to [fundamental skill]" │ │ ✓ "What is [concept/definition]" │ │ ✓ "Complete guide to [topic]" │ │ ✓ "[Topic] for beginners" │ │ ✓ "[Topic] best practices" │ │ ✓ "[Topic] vs [Topic] comparison" │ │ ✗ "Best [products] of 2024" (needs annual update) │ │ ✗ "[Event] coverage" (time-limited) │ └─────────────────────────────────────────────────────────┘ EVERGREEN MAINTENANCE: Quarterly → Verify facts, links, accuracy Annually → Refresh examples, add new insights As needed → Address comments/questions raised

Content Repurposing

Content repurposing transforms existing high-performing content into multiple formats (video, podcast, infographic, social posts, slides) to reach new audiences, earn additional backlinks, and maximize ROI from content investments across different platforms and search verticals.

REPURPOSING WORKFLOW: ┌────────────────────────────────────────────────────────────┐ │ ORIGINAL CONTENT │ │ "Ultimate Guide to Docker" │ │ (Blog Post - 3000 words) │ └─────────────────────────┬──────────────────────────────────┘ ┌─────────────────┼─────────────────┐ │ │ │ ▼ ▼ ▼ ┌───────────────┐ ┌───────────────┐ ┌───────────────┐ │ YouTube │ │ SlideShare │ │ Podcast │ │ Tutorial │ │ Presentation │ │ Episode │ │ (Video SEO) │ │ (40 slides) │ │ (Audio SEO) │ └───────┬───────┘ └───────────────┘ └───────────────┘ ┌───────────────┐ ┌───────────────┐ ┌───────────────┐ │ Twitter/X │ │ LinkedIn │ │ Infographic │ │ Thread │ │ Article │ │ (Pinterest) │ │ (10 tweets) │ │ (summary) │ │ (Visual) │ └───────────────┘ └───────────────┘ └───────────────┘ REPURPOSING MATRIX: Original Format → Repurposed Options ─────────────────────────────────────────────── Blog Post → Video, Podcast, Slides, Thread Video → Blog, Shorts, GIFs, Quotes Podcast → Blog transcript, Audiogram Webinar → Blog series, YouTube, Clips Data/Research → Infographic, Press Release

User-Generated Content SEO

User-generated content (UGC) like reviews, comments, forum posts, and Q&A adds fresh, keyword-rich content at scale—when properly moderated and structured with schema markup, UGC improves page relevance, long-tail rankings, and provides social proof that boosts conversions.

UGC SEO OPTIMIZATION: ┌─────────────────────────────────────────────────────────┐ │ PRODUCT PAGE WITH UGC │ ├─────────────────────────────────────────────────────────┤ │ <article>Product Description (500 words)</article> │ │ │ │ <section itemscope itemtype="AggregateRating"> │ │ ★★★★☆ 4.2/5 (847 reviews) ← Rich Snippet eligible │ │ </section> │ │ │ │ <section class="reviews"> │ │ ┌─────────────────────────────────────────────┐ │ │ │ "Great for beginners learning Python..." │ │ │ │ ─ Contains long-tail keywords naturally │ │ │ │ ─ Fresh content (daily updates) │ │ │ │ ─ Increases page word count │ │ │ └─────────────────────────────────────────────┘ │ │ </section> │ │ │ │ <section class="qa" itemscope itemtype="FAQPage"> │ │ Q: "Does this work with Docker?" │ │ A: "Yes, fully compatible..." ← FAQ Schema │ │ </section> │ └─────────────────────────────────────────────────────────┘ UGC MODERATION RULES: ✓ Auto-approve verified purchasers ✓ Hold external links for review (nofollow ugc) ✗ Block spam, thin responses (< 20 chars) ✗ Remove duplicate content
<!-- UGC Link Attribute --> <a href="userlink.com" rel="ugc nofollow">User's Link</a>

Content Velocity Planning

Content velocity is the strategic measurement and optimization of content production speed relative to competitive requirements—balancing quantity, quality, and topical coverage to outpace competitors in building authority while maintaining quality standards and resource constraints.

CONTENT VELOCITY FORMULA: ┌─────────────────────────────────────────────────────────┐ │ Required Velocity = (Competitor Avg Output × Gap Score) │ │ + Decay Replacement Rate │ │ │ │ Example: │ │ Competitors publish: 8 posts/month │ │ Your gap score: 1.5x (50% behind) │ │ Decay rate: 2 posts/month need refresh │ │ │ │ Required: (8 × 1.5) + 2 = 14 posts/month │ └─────────────────────────────────────────────────────────┘ VELOCITY COMPARISON: Your Site Competitor A Competitor B ───────── ──────────── ──────────── New Posts/mo 8 12 15 Updates/mo 4 6 8 Total Output 12 18 23 ▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ SCALING CONTENT VELOCITY: ┌─────────────────────────────────────────────────────────┐ │ PHASE 1: Baseline (Month 1-3) │ │ └── 4 posts/month, establish quality standards │ │ │ │ PHASE 2: Scale (Month 4-6) │ │ └── 8 posts/month, add writers, templates │ │ │ │ PHASE 3: Compete (Month 7-12) │ │ └── 12+ posts/month, full production pipeline │ │ │ │ PHASE 4: Dominate (Year 2+) │ │ └── Match/exceed competitors + refresh backlog │ └─────────────────────────────────────────────────────────┘ VELOCITY ≠ QUALITY TRADEOFF: Quality ▲ │ ●─────────── Target Zone │ ╲ │ ●───── Acceptable Threshold │ ╲ │ ╲ │ ●── Below this = harmful └────────────────────────────▶ Velocity

Summary Cheat Sheet

┌────────────────────────────────────────────────────────────────┐ │ CONTENT STRATEGY OVERVIEW │ ├────────────────────────────────────────────────────────────────┤ │ │ │ FUNDAMENTALS │ STRATEGY │ │ ───────────── │ ──────── │ │ • Relevance = Intent │ • Pillars → Clusters → Authority │ │ • Keywords in H1/Title│ • Calendar → Velocity → Consistency │ │ • Readability 60-70 │ • Audit → Prune → Consolidate │ │ • Format for scanning │ • Evergreen + Repurpose = ROI │ │ • Canonical dupes │ • Historical Optimization = Quick Win│ │ • Kill thin content │ • UGC = Free Long-tail Content │ │ • Fresh = Rankings │ │ │ │ │ PRIORITY ORDER: │ │ 1. Audit existing content (quick wins) │ │ 2. Build pillar/cluster structure │ │ 3. Establish velocity + calendar │ │ 4. Scale with quality + repurposing │ │ │ └────────────────────────────────────────────────────────────────┘