/*
Theme Name: A2A Theme — Warm Authority
Theme URI: https://alignedtoact.com
Author: Ipalibo Da-Wariboko
Author URI: https://alignedtoact.com
Description: The official blog of Aligned to Act — field notes on Business Relationship Management (BRM), the discipline of winning the rooms you’re not in. "Warm Authority" design system (Concept 3): navy authority, antique-gold precision, clay warmth, on an ivory reading surface. See a2a_design_brief_warm_authority_v1_0.md.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary
License URI: https://alignedtoact.com
Text Domain: a2a-theme
*/

/* Change log
   v2.1.0 — June 1, 2026 — Ipalibo Da-Wariboko
     • Repositioned to Business Relationship Management (BRM): blog hero kicker + subhead,
       end-of-article CTA, and theme description now name the category.
     • Kept the hero headline "We do the preparation. / You bring the relationship."
     • The Prep newsletter reframed from a weekly-cadence promise ("every Tuesday")
       to a founding / early-access list, with an honest post-signup confirmation.
     • Copy-only change. The Mailchimp signup endpoint (inc/newsletter-api.php) and the
       form's behavior are untouched; the form keeps collecting founding subscribers.
   v2.0.0 — May 29, 2026 — Initial Warm Authority blog theme.
*/

/* ============================================================
   In-post components — light reading surface
   Tokens are defined in header.php :root (Warm Authority).
   ============================================================ */

/* A2A Component: Conversational Anchors */
.a2a-anchor-box {
    background: var(--clay-dim);
    border: 1px solid var(--border-gold);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    border-radius: var(--radius);
}

.a2a-anchor-box h4 {
    color: var(--clay);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 0;
}

.a2a-anchor-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink);
    font-size: 1.2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--clay);
    margin-top: 1rem;
}

/* A2A Component: Risk Flags (brought on-brand — no bright red) */
.a2a-risk-flag {
    background: rgba(176,71,46,0.06);
    border: 1px solid rgba(176,71,46,0.45);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius);
}

.a2a-risk-flag h4 {
    color: var(--status-risk);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 0;
}

.a2a-risk-body {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.a2a-risk-body strong {
    color: var(--ink);
}

.a2a-anchor-box, .a2a-risk-flag {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    line-height: 1.8;
}

/* Category / Houston signal badge */
.a2a-category-houston {
    display: inline-block;
    border: 1px solid var(--clay);
    color: var(--clay);
    background: var(--clay-dim);
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 2px 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-radius: var(--radius);
}

/* ============================================================
   Pagination — global (used on the blog index and archives)
   ============================================================ */
.nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.nav-links .page-numbers {
    font-family:     var(--font-mono);
    font-size:       12px;
    letter-spacing:  0.1em;
    color:           var(--ink-soft);
    padding:         8px 16px;
    border:          1px solid var(--border);
    border-radius:   var(--radius);
    text-decoration: none;
    transition:      all 0.2s ease;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    color:        var(--clay);
    border-color: var(--clay);
    background:    var(--clay-dim);
}
