/*
Theme Name: A2A Theme — Dark and Gold
Theme URI: https://alignedtoact.com
Author: Ipalibo Da-Wariboko
Author URI: https://alignedtoact.com
Description: The official A2A blog — field notes from the front lines of business relationship management. "Your growth strategist, in your pocket." Dark-and-Gold design system: warm-black ground (#0E1216), gold accent (#E0A93F), Fraunces display, Hanken Grotesk body. Matches the live A2A product site shared.css v2.6.
Version: 3.0.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
   v3.0.0 — June 9, 2026 — Ipalibo Da-Wariboko
     • Full re-skin from Warm Authority (Cormorant/Outfit/clay/2px/ivory) to
       Dark-and-Gold (Fraunces/Hanken Grotesk/gold/#0E1216/12px radius).
     • Token names and class names preserved — only values changed — so all
       inline var(--token) references keep working automatically.
     • Positioning updated throughout: "Your growth strategist, in your pocket."
       leads; BRM category referenced in subtext, not as the primary hook.
     • CTA updated to "Check Out A2A →" linking to alignedtoact.com.
     • Matches shared.css v2.6 (product site) exactly on tokens, fonts, and radius.
   v2.1.0 — June 1, 2026 — Ipalibo Da-Wariboko
     • Repositioned to BRM category; hero copy and CTA updated.
   v2.0.0 — May 29, 2026 — Initial Warm Authority blog theme.
*/

/* ============================================================
   In-post components — Dark-and-Gold surface
   Tokens are defined in header.php :root.
   ============================================================ */

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

.a2a-anchor-box h4 {
    color: var(--gold);
    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(--cream);
    font-size: 1.2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
    margin-top: 1rem;
}

/* A2A Component: Risk Flags */
.a2a-risk-flag {
    background: rgba(232,103,92,0.08);
    border: 1px solid rgba(232,103,92,0.35);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: var(--radius);
}

.a2a-risk-flag h4 {
    color: var(--error);
    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(--cream);
}

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

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

/* ============================================================
   Pagination — global
   ============================================================ */
.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(--gray-dim);
    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(--gold);
    border-color: var(--border-gold);
    background:   var(--gold-dim);
}
