/*
Theme Name: The RevOps Guide — Unified
Author: Ifeanyi Chukwudebe
Description: The complete RevOps Guide site. The full consulting/methodology site (About, Experience, How I Work, Services, Resources, Consulting, and all existing pages) UNIFIED with the Field Almanac publication (almanac front page, Writing Desk with Gemini, The Watch — reporting desks, live signals, curation queue, Drive storage). One theme, both design systems, nothing orphaned. Restyled to the almanac design language. v2.3 — every meeting CTA (front page, footer, all page templates) unified through one connected intro-meeting resolver; fixed the dead front-page link. August 2026.
Version: 2.4
Requires at least: 6.0
License: Proprietary — Ifeanyi Chukwudebe / TheRevOpsGuide LLC
Text Domain: revops-unified
*/

/* ============================================
   COLOR PALETTE - Ocean Blue + Warm Parchment
   v8.1: Blues stay. Backgrounds go warm cream.
   Sections use steel-blue for contrast.
   ============================================ */
:root {
    --primary-blue: #3A6B99;        /* Steel blue — unchanged */
    --primary-blue-dark: #2A5478;   /* Deeper steel blue — unchanged */
    --accent-blue: #62AED8;         /* Sky steel accent — unchanged */
    
    /* V5 Compatibility Aliases */
    --dark-blue: #1C3554;             /* Deep navy — unchanged */
    
    /* OCEAN-PARCHMENT BACKGROUND SYSTEM — v8.1
       3 distinct layers: cream body → white cards → steel-blue sections */
    --background-grey: #F5F0E8;     /* Warm cream body — WAS #ECF0F5 */
    --card-white: #FDFCF9;          /* Near-white warm cards — WAS #FBFBFD */
    --grey-50: #E8EFF6;             /* Steel-blue sections — WAS #F7FAFC */
    --grey-100: #E8EFF6;            /* Steel-blue sections — WAS #F7FAFC */
    --grey-200: #F0EBE0;            /* Warm border/dividers — WAS #EDF2F7 */
    --grey-300: #E0D8CC;            /* Warm medium border — WAS #E2E8F0 */
    --grey-400: #C5D3E2;            /* Steel border for sections — WAS #CBD5E0 */
    --grey-500: #A0AEC0;            /* Text grey — unchanged */
    --grey-600: #718096;            /* Dark text grey — unchanged */
    --grey-700: #4A5568;            /* Very dark grey — unchanged */
    --grey-800: #2D3748;            /* Almost black — unchanged */
    --grey-900: #2D3748;            /* V5 alias — unchanged */
    
    --white: #FFFFFF;
    --success: #48BB78;
    --warning: #ED8936;
    
    /* SHADOW SYSTEM — warmed to match parchment */
    --shadow-sm: 0 2px 4px rgba(120, 100, 70, 0.06);
    --shadow-md: 0 4px 12px rgba(120, 100, 70, 0.10);
    --shadow-lg: 0 8px 24px rgba(58, 107, 153, 0.12);
    --shadow-xl: 0 12px 40px rgba(58, 107, 153, 0.16);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-700);
    background-color: var(--background-grey);
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--card-white);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   HEADER — v8.3
   Parchment background with banner image right,
   logo pinned left. No more blue gradient.
   ============================================ */
.site-header {
    background: var(--dark-blue);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding .custom-logo-link img {
    height: 36px;
    width: auto;
    max-width: 160px;
}

.site-branding h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    color: white;
}

.site-branding h1 a {
    color: white;
    text-decoration: none;
}

.site-tagline {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-blue);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-navigation {
    background: var(--card-white);
    border-bottom: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 16px 24px;
    color: var(--grey-700);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: var(--primary-blue);
    background: var(--grey-200);
    border-bottom-color: var(--accent-blue);
}

/* Dropdown menus */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    z-index: 1000;
    border-top: 2px solid var(--primary-blue);
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--grey-700);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu .sub-menu li a:hover {
    background: var(--grey-200);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    background: var(--card-white);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--grey-300);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(44, 82, 130, 0.1);
}

.page-subtitle {
    font-size: 20px;
    color: var(--grey-600);
    line-height: 1.8;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 40px;
    margin: -60px -30px 60px -30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   DUAL-TRACK SECTIONS
   ============================================ */
.dual-track-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.track-card {
    background: var(--card-white);
    border: 2px solid var(--grey-300);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.track-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.track-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.track-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 16px;
}

.track-description {
    font-size: 16px;
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.track-features {
    list-style: none;
    margin-bottom: 24px;
}

.track-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--grey-700);
}

.track-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.track-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.track-cta:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px) translateY(-2px);
}

/* ============================================
   EXPERIENCE BANNER
   ============================================ */
.experience-banner {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 50%, var(--accent-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 40px;
    margin: 80px -30px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.experience-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.experience-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.experience-banner p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--grey-50);
    border-left: 5px solid var(--primary-blue);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.content-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    color: var(--primary-blue-dark);
    margin: 32px 0 16px 0;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--grey-700);
    margin-bottom: 20px;
}

.content-section ul, 
.content-section ol {
    margin: 20px 0 20px 24px;
    color: var(--grey-700);
}

.content-section li {
    margin: 12px 0;
    line-height: 1.8;
}

/* ============================================
   CARDS (For 3-column layouts, etc)
   ============================================ */
.card {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.card h3 {
    color: var(--primary-blue-dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: var(--grey-600);
    line-height: 1.6;
}

/* ============================================
   3-COLUMN GRID
   ============================================ */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.button, 
.wp-block-button__link,
button[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.button-secondary {
    background: linear-gradient(135deg, var(--grey-400) 0%, var(--grey-500) 100%);
    color: var(--white);
}

.button-secondary:hover {
    background: linear-gradient(135deg, var(--grey-500) 0%, var(--grey-600) 100%);
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--grey-300);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    color: var(--grey-700);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--grey-700);
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

/* ============================================
   CONTENT PAGE PATTERNS
   Reusable classes for methodology and content pages
   ============================================ */

/* Page Hero — used by 11+ templates */
.page-hero {
    color: white;
    padding: 80px 20px;
    text-align: center;
}
.page-hero h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page Content wrapper */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}
.page-content h2 {
    color: var(--primary-blue);
    font-size: 32px;
    margin: 50px 0 20px;
}
.page-content h3 {
    color: var(--primary-blue-dark);
    font-size: 22px;
    margin: 24px 0 12px;
}
.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey-700);
    margin-bottom: 16px;
}
.page-content ul, .page-content ol {
    margin: 16px 0 24px 24px;
    color: var(--grey-700);
}
.page-content li {
    margin: 10px 0;
    line-height: 1.7;
    font-size: 17px;
}

/* Arm Page — base class for 18+ templates */
.arm-page {
    color: var(--grey-700);
}

/* Lead paragraph — emphasized intro text */
.lead-paragraph {
    font-size: 20px !important;
    line-height: 1.8;
    color: var(--grey-700);
}

/* Intro section */
.intro-section {
    margin-bottom: 40px;
}

/* Emphasis text */
.emphasis {
    font-size: 22px !important;
    font-weight: 700;
    color: var(--primary-blue-dark) !important;
}

/* Pattern/Callout Box — highlighted aside */
.pattern-box,
.callout-box {
    background: var(--grey-50);
    border-left: 4px solid var(--primary-blue);
    padding: 30px 35px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Reusable content grids (2-col auto-fit) */
.blame-grid,
.expectation-grid,
.why-matters-grid,
.engine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

/* Grid items — card-style boxes */
.blame-item,
.expectation-item,
.matter-item,
.goal-item,
.brain-card {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    padding: 28px;
}
.blame-item h3,
.expectation-item h3,
.matter-item h3,
.goal-item h3,
.brain-card h3 {
    color: var(--primary-blue-dark);
    font-size: 20px;
    margin-bottom: 12px;
}
.blame-item p,
.expectation-item p,
.matter-item p,
.goal-item p,
.brain-card p {
    font-size: 16px;
    color: var(--grey-700);
    line-height: 1.7;
}

/* Stacked content lists (examples, reactions) */
.dysfunction-examples,
.reaction-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}
.example-item,
.reaction-item {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    padding: 30px;
}
.example-item h3,
.reaction-item h3 {
    color: var(--primary-blue-dark);
    font-size: 20px;
    margin-bottom: 12px;
}
.example-item p,
.reaction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-700);
}

/* Reality callout — warm amber highlight */
.reality {
    background: #fef3c7;
    padding: 16px 20px;
    border-radius: 6px;
    margin-top: 16px;
    color: #78350f;
}

/* Negative/warning text */
.not {
    color: #b91c1c;
    font-style: italic;
    margin-top: 12px;
}

/* Translation/interpretation text */
.translation {
    color: var(--primary-blue);
    font-style: italic;
    margin-top: 12px;
}

/* Realization box — dark emphasis block */
.realization-box {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 30px 0;
}
.realization-box p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 19px !important;
    line-height: 1.8;
}
.realization-box strong {
    color: white;
}

/* Final thought box — amber emphasis */
.final-thought-box {
    background: #fef3c7;
    border-left: 4px solid #b45309;
    padding: 40px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}
.final-thought-box p {
    font-size: 19px;
    color: #78350f;
    line-height: 1.8;
}

/* CTA Box — call to action block */
.cta-box {
    background: var(--grey-50);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}
.cta-box h3 {
    color: var(--primary-blue-dark);
    font-size: 24px;
    margin-bottom: 12px;
}
.cta-box p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Formula box */
.formula-box {
    background: var(--card-white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

/* Button variants for content pages */
.page-content .button,
.cta-box .button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin: 4px 8px;
    transition: opacity 0.2s;
}
.page-content .button:hover,
.cta-box .button:hover {
    opacity: 0.9;
}
.button.primary {
    background: var(--primary-blue);
    color: white;
}
.button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

/* Numbered list with styled counters */
.alternative-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    counter-reset: alt-counter;
}
.alternative-list li {
    counter-increment: alt-counter;
    padding: 20px 20px 20px 60px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: var(--grey-700);
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    margin-bottom: 12px;
}
.alternative-list li::before {
    content: counter(alt-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Arms list — for Imagine the Octopus, Eight Arms */
.arms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

/* Section break — visual divider */
.section-break {
    border: none;
    border-top: 2px solid var(--grey-300);
    margin: 50px 0;
}

/* Arm navigation — prev/next links at bottom */
.arm-navigation {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    margin-top: 20px;
    border-top: 1px solid var(--grey-300);
}
.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.nav-link:hover {
    text-decoration: underline;
}

/* Engine card — for How It Works page */
.engine-card {
    background: var(--card-white);
    border: 1px solid var(--grey-300);
    border-radius: 8px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.engine-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CONTENT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .page-hero { padding: 60px 20px; }
    .page-hero h1 { font-size: 32px; }
    .page-content { padding: 40px 16px; }
    .page-content h2 { font-size: 26px; }
    .blame-grid,
    .expectation-grid,
    .why-matters-grid,
    .engine-grid,
    .arms-list { grid-template-columns: 1fr; }
    .realization-box { padding: 30px 24px; }
    .final-thought-box { padding: 24px; }
    .cta-box { padding: 24px; }
    .cta-box .button,
    .page-content .button { display: block; margin: 8px 0; text-align: center; }
    .arm-navigation { flex-direction: column; gap: 12px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--grey-800);
    color: var(--grey-300);
    padding: 60px 0 30px 0;
    margin-top: 80px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--grey-400);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-bottom {
    border-top: 1px solid var(--grey-700);
    padding-top: 30px;
    text-align: center;
    color: var(--grey-500);
    font-size: 14px;
}

/* ============================================
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   ============================================ */
.wp-block-image {
    margin: 30px 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.wp-block-quote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 24px;
    margin: 30px 0;
    font-style: italic;
    color: var(--grey-600);
}

.wp-block-separator {
    border: none;
    border-top: 2px solid var(--grey-300);
    margin: 40px 0;
}

/* ============================================
   ASSESSMENT PLUGIN STYLES
   ============================================ */
.revops-assessment-form {
    background: var(--card-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.revops-question {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--grey-300);
}

.revops-question:last-child {
    border-bottom: none;
}

.revops-question label {
    font-size: 18px;
    font-weight: 600;
    color: var(--grey-700);
    margin-bottom: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-header {
        padding: 0;
    }

    .header-container {
        padding: 0 16px;
        min-height: 56px;
    }

    .site-branding {
        gap: 8px;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu > li > a {
        padding: 12px 20px;
    }
    
    .dual-track-container {
        grid-template-columns: 1fr;
    }
    
    .three-column-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section h2 {
        font-size: 28px;
    }
    
    .site-main {
        padding: 40px 20px;
    }
    
    .hero-section,
    .experience-banner {
        margin-left: -20px;
        margin-right: -20px;
        padding: 60px 20px;
    }
    
    .content-section {
        padding: 24px;
    }
    
    .track-card {
        padding: 30px 24px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-small { margin-top: 20px; }
.mt-medium { margin-top: 40px; }
.mt-large { margin-top: 60px; }

.mb-small { margin-bottom: 20px; }
.mb-medium { margin-bottom: 40px; }
.mb-large { margin-bottom: 60px; }

.pt-small { padding-top: 20px; }
.pt-medium { padding-top: 40px; }
.pt-large { padding-top: 60px; }

.pb-small { padding-bottom: 20px; }
.pb-medium { padding-bottom: 40px; }
.pb-large { padding-bottom: 60px; }

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .main-navigation,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .site-container {
        box-shadow: none;
    }
}
/* ============================================
   BLOG POST CARD STYLES
   ============================================ */
.blog-post-card {
    background: var(--card-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.blog-post-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.blog-post-card .post-content { padding: 24px; }
.blog-post-card h3 a { color: var(--primary-blue-dark); text-decoration: none; }
.blog-post-card h3 a:hover { color: var(--primary-blue); }
.blog-post-card .post-meta { font-size: 13px; color: var(--grey-500); margin-bottom: 8px; }
.blog-post-card .post-excerpt { font-size: 15px; color: var(--grey-600); line-height: 1.7; }

/* ============================================
   DARK SECTION TEXT OVERRIDE FIX
   When .content-section has a dark background,
   force paragraph text to be light.
   ============================================ */
.content-section.octopus-hero p {
    color: #e2e8f0 !important;
}

.content-section.octopus-hero strong {
    color: #ffffff !important;
}
/* ============ ALMANAC DESIGN SYSTEM (merged) ============ */

:root{
  --ink:#1a1a17;
  --paper:#f7f4ec;
  --paper-2:#efeadb;
  --rule:#d6cfbc;
  --signal:#b0472b;
  --signal-deep:#7d3320;
  --moss:#4a5340;
  --muted:#6b6558;
  --maxw:1100px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Newsreader',Georgia,'Times New Roman',serif;
  font-size:18px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--signal);text-decoration:none}
a:hover{color:var(--signal-deep)}
.mono{font-family:'IBM Plex Mono','Courier New',monospace}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}

/* ---------- masthead ---------- */
.masthead{border-bottom:3px double var(--ink);padding:22px 0 14px}
.masthead-top{display:flex;justify-content:space-between;align-items:baseline}
.logo{font-family:'Fraunces',Georgia,serif;font-weight:600;font-size:34px;letter-spacing:-.5px;line-height:1;display:flex;align-items:center;gap:14px;color:var(--ink);text-decoration:none}
.logo .g{color:var(--signal)}
.dateline{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);text-align:right;line-height:1.5}
.tagline{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:3px;text-transform:uppercase;color:var(--muted);margin-top:10px;text-align:center;border-top:1px solid var(--rule);padding-top:10px}
.mainnav{display:flex;justify-content:center;gap:30px;padding:14px 0 0;flex-wrap:wrap}
.mainnav a{font-family:'Fraunces',serif;font-size:15px;color:var(--ink);font-weight:500}
.mainnav a:hover,.mainnav a.on{color:var(--signal)}
.mainnav a.on{border-bottom:2px solid var(--signal);padding-bottom:2px}

/* ---------- lead ---------- */
.lead{display:grid;grid-template-columns:1.6fr 1fr;gap:44px;padding:40px 0;border-bottom:1px solid var(--rule)}
.lead-img,.ph{background:var(--paper-2);border:1px solid var(--rule);display:flex;align-items:center;justify-content:center;color:var(--muted);font-family:'IBM Plex Mono',monospace;font-size:12px;overflow:hidden}
.lead-img{aspect-ratio:16/10}
.lead-img img,.wrow-img img,.hero-img img{width:100%;height:100%;object-fit:cover}
.eyebrow{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--signal);margin:16px 0 8px}
.lead h1,.lead h1 a{font-family:'Fraunces',serif;font-weight:500;font-size:40px;line-height:1.08;letter-spacing:-.5px;margin-bottom:14px;color:var(--ink)}
.lead p{font-size:18px;color:#37342d}
.byline{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--muted);letter-spacing:1px;margin-top:16px;text-transform:uppercase}
.lead-side{border-left:1px solid var(--rule);padding-left:28px}
.lead-side h4{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:16px}
.dispatch{padding:12px 0;border-bottom:1px dotted var(--rule)}
.dispatch:last-child{border:none}
.dispatch .src{font-family:'IBM Plex Mono',monospace;font-size:10px;letter-spacing:1px;color:var(--moss);text-transform:uppercase}
.dispatch p,.dispatch a{font-family:'Fraunces',serif;font-size:15px;font-weight:500;line-height:1.3;margin-top:3px;color:var(--ink);display:block}
.live-dot{width:7px;height:7px;background:var(--moss);border-radius:50%;display:inline-block;margin-right:6px;vertical-align:middle}

/* ---------- section head ---------- */
.section-head{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:3px;text-transform:uppercase;color:var(--muted);margin:0 0 20px;display:flex;align-items:center;gap:14px}
.section-head::after{content:'';flex:1;height:1px;background:var(--rule)}

/* ---------- territories ---------- */
.territories{padding:38px 0;border-bottom:1px solid var(--rule)}
.terr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--rule);border:1px solid var(--rule)}
.terr{background:var(--paper);padding:22px 20px;transition:background .15s;text-decoration:none;color:var(--ink);display:block}
.terr:hover{background:var(--paper-2)}
.terr .num{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--signal);letter-spacing:1px}
.terr h3{font-family:'Fraunces',serif;font-weight:500;font-size:21px;margin:6px 0 5px;color:var(--ink)}
.terr p{font-size:14px;color:var(--muted);line-height:1.4}

/* ---------- writing rows ---------- */
.writing{padding:38px 0;border-bottom:1px solid var(--rule)}
.wrow{display:grid;grid-template-columns:120px 1fr auto;gap:24px;align-items:center;padding:18px 0;border-bottom:1px dotted var(--rule);text-decoration:none;color:inherit}
.wrow:last-child{border:none}
.wrow-img{width:120px;height:78px;background:var(--paper-2);border:1px solid var(--rule);display:flex;align-items:center;justify-content:center;color:var(--muted);font-family:'IBM Plex Mono',monospace;font-size:11px}
.wrow h3{font-family:'Fraunces',serif;font-weight:500;font-size:23px;line-height:1.15;margin-bottom:5px;color:var(--ink)}
.wrow p{font-size:15px;color:#4a463d;line-height:1.4}
.wrow .kind{font-family:'IBM Plex Mono',monospace;font-size:10px;letter-spacing:1px;text-transform:uppercase;color:var(--signal);white-space:nowrap;text-align:right}


.book{display:flex;gap:16px;margin-bottom:18px;text-decoration:none;color:var(--ink)}
.book-cover{width:52px;height:72px;background:var(--signal);border-radius:2px 4px 4px 2px;flex-shrink:0;box-shadow:2px 2px 0 var(--paper-2),3px 3px 0 var(--rule)}
.book-cover.two{background:var(--moss)}
.book h4{font-family:'Fraunces',serif;font-weight:500;font-size:17px;line-height:1.2}
.book .meta{font-family:'IBM Plex Mono',monospace;font-size:10px;letter-spacing:1px;color:var(--muted);text-transform:uppercase;margin-top:4px}
.rec{display:flex;gap:12px;align-items:flex-start;margin-bottom:16px}
.avatar{width:36px;height:36px;border-radius:50%;background:var(--paper-2);border:1px solid var(--rule);display:flex;align-items:center;justify-content:center;font-family:'IBM Plex Mono',monospace;font-size:12px;color:var(--muted);flex-shrink:0}
.rec p{font-size:15px;line-height:1.4}
.rec .who{font-family:'IBM Plex Mono',monospace;font-size:10px;letter-spacing:1px;color:var(--moss);text-transform:uppercase;margin-top:3px}

/* ---------- colophon ---------- */
.colophon{padding:26px 0 44px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px}
.colophon .who{font-family:'Fraunces',serif;font-size:16px}
.colophon .who span{color:var(--muted);font-size:14px}
.colophon a.cta{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:var(--signal);border:1px solid var(--signal);padding:9px 18px}
.colophon a.cta:hover{background:var(--signal);color:var(--paper)}

/* ---------- single / page article ---------- */
.article{max-width:720px;margin:0 auto;padding:44px 0}
.article .eyebrow{text-align:center}
.article h1{font-family:'Fraunces',serif;font-weight:500;font-size:42px;line-height:1.1;text-align:center;margin-bottom:16px}
.article .byline{text-align:center;margin-bottom:32px}
.article .hero-img{aspect-ratio:16/9;background:var(--paper-2);border:1px solid var(--rule);margin-bottom:32px}
.article-body{font-size:19px;line-height:1.75}
.article-body p{margin-bottom:1.4em}
.article-body h2{font-family:'Fraunces',serif;font-weight:500;font-size:28px;margin:1.6em 0 .5em}
.article-body h3{font-family:'Fraunces',serif;font-weight:500;font-size:22px;margin:1.4em 0 .5em}
.article-body blockquote{border-left:3px solid var(--signal);padding-left:22px;margin:1.5em 0;font-style:italic;color:var(--muted);font-size:22px}
.article-body a{border-bottom:1px solid var(--signal)}
.article-body ul,.article-body ol{margin:0 0 1.4em 1.4em}
.article-body li{margin-bottom:.4em}
.article-body img{margin:1.6em 0;border:1px solid var(--rule)}
.article-body code{font-family:'IBM Plex Mono',monospace;font-size:.9em;background:var(--paper-2);padding:2px 6px;border-radius:3px}

/* ---------- archive / topic ---------- */
.page-head{padding:44px 0 24px;border-bottom:3px double var(--ink);text-align:center}
.page-head .eyebrow{justify-content:center}
.page-head h1{font-family:'Fraunces',serif;font-weight:500;font-size:44px;letter-spacing:-.5px}
.page-head p{color:var(--muted);font-size:18px;margin-top:10px;max-width:560px;margin-left:auto;margin-right:auto}
.archive-list{padding:32px 0}

/* ---------- footer ---------- */
.site-footer{border-top:3px double var(--ink);padding:36px 0 48px;margin-top:20px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:32px}
.footer-grid h5{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:12px}
.footer-grid a{display:block;color:var(--ink);font-size:15px;padding:3px 0}
.footer-grid a:hover{color:var(--signal)}
.footer-note{font-size:13px;color:var(--muted);line-height:1.6}
.footer-mark{margin-top:24px;padding-top:20px;border-top:1px solid var(--rule);font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:1px;color:var(--muted);text-transform:uppercase;text-align:center}

@media(max-width:820px){
  body{font-size:17px}
  .wrap{padding:0 20px}
  .lead,.footer-grid{grid-template-columns:1fr}
  .lead-side{border-left:none;border-top:1px solid var(--rule);padding-left:0;padding-top:24px}
  .terr-grid{grid-template-columns:1fr 1fr}
  .wrow{grid-template-columns:1fr;gap:10px}
  .wrow-img{display:none}
  .lead h1{font-size:32px}
  .article h1{font-size:32px}
  .logo{font-size:26px}
}

/* ---------- signals watch-board ---------- */


/* ---------- desks ---------- */
.desks{padding:38px 0;border-bottom:1px solid var(--rule)}

.desk{border:1px solid var(--rule);border-radius:8px;padding:22px 24px;background:var(--paper)}



/* ============================================================
   FRONT PAGE — CONSULTING-FIRST LAYOUT v2.3
   ============================================================ */
.fp-hero { background: var(--card-white); border-bottom: 1px solid var(--border-light); padding: 60px 40px 50px; }
.fp-hero-inner { max-width: 860px; margin: 0 auto; }
.fp-hero .eyebrow { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-blue); font-family: 'IBM Plex Mono', monospace; margin-bottom: 12px; }
.fp-hero h1 { font-size: 38px; font-weight: 600; color: var(--dark-blue); margin-bottom: 16px; line-height: 1.2; }
.fp-hero-desc { font-size: 17px; line-height: 1.8; color: var(--grey-700); max-width: 680px; }
.fp-scenarios { padding: 0 40px 48px; max-width: 1100px; margin: 0 auto; }
.scenario-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.scenario-card { background: var(--card-white); border: 1px solid var(--border-light); border-radius: 12px; padding: 28px 28px 24px; }
.scenario-card:hover { border-color: var(--primary-blue); }
.scenario-num { font-size: 11px; font-family: 'IBM Plex Mono', monospace; color: var(--accent-blue); margin-bottom: 8px; letter-spacing: 1px; }
.scenario-card h3 { font-size: 17px; font-weight: 600; color: var(--dark-blue); margin-bottom: 12px; line-height: 1.3; }
.scenario-card p { font-size: 14px; line-height: 1.75; color: var(--grey-700); margin-bottom: 16px; }
.scenario-results { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.scenario-results span { font-size: 11px; padding: 4px 10px; border-radius: 20px; background: var(--grey-50); color: var(--grey-600); border: 1px solid var(--border-light); }
.scenario-link { font-size: 12px; color: var(--accent-blue); text-decoration: none; font-family: 'IBM Plex Mono', monospace; letter-spacing: .5px; }
.scenario-link:hover { text-decoration: underline; }
@media (max-width: 768px) { .scenario-grid { grid-template-columns: 1fr; } .fp-hero { padding: 40px 20px 32px; } .fp-scenarios { padding: 0 20px 32px; } }

/* ============================================================
   PROFILE PAGES
   ============================================================ */
.profile-hero { background: linear-gradient(135deg, var(--primary-blue, #3A6B99) 0%, var(--dark-blue, #1C3554) 100%); padding: 70px 40px 60px; }
.profile-hero-inner { max-width: 900px; margin: 0 auto; }
.profile-eyebrow { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); font-family: 'IBM Plex Mono', monospace; margin-bottom: 12px; }
.profile-hero h1 { font-size: 40px; font-weight: 600; color: white; line-height: 1.2; margin: 0; }
.profile-body { max-width: 1000px; margin: 0 auto; padding: 50px 40px; }
.profile-section { margin-bottom: 60px; }
.profile-section h2 { font-size: 26px; color: var(--dark-blue, #1C3554); margin-bottom: 20px; font-weight: 600; }

/* Snapshot table */
.snapshot-table { width: 100%; border-collapse: collapse; }
.snapshot-table tr { border-bottom: 1px solid #e5e7eb; }
.snapshot-table th { width: 180px; text-align: left; padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--dark-blue, #1C3554); background: #f9fafb; vertical-align: top; }
.snapshot-table td { padding: 14px 16px; font-size: 15px; color: #374151; line-height: 1.6; }

/* PEER statement */
.peer-statement { background: #eff6ff; border-left: 4px solid var(--primary-blue, #3A6B99); padding: 16px 20px; font-size: 14px; line-height: 1.7; color: #1e3a5f; margin-bottom: 20px; border-radius: 0 6px 6px 0; }

/* Initiatives table */
.initiatives-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.initiatives-table thead tr { background: var(--dark-blue, #1C3554); }
.initiatives-table thead th { padding: 12px 16px; text-align: left; color: white; font-weight: 600; font-size: 13px; }
.initiatives-table tbody tr { border-bottom: 1px solid #e5e7eb; vertical-align: top; }
.initiatives-table tbody tr:nth-child(even) { background: #f9fafb; }
.initiatives-table tbody td { padding: 16px; line-height: 1.6; color: #374151; }
.initiatives-table tbody td:first-child { width: 40px; font-weight: 700; color: var(--primary-blue, #3A6B99); font-family: 'IBM Plex Mono', monospace; }
.initiatives-table tbody td:nth-child(2) { width: 180px; }
.initiatives-table tbody td:nth-child(3) { width: 280px; }
.initiatives-table tbody td p { margin: 0 0 8px 0; }
.initiatives-table tbody td p:last-child { margin-bottom: 0; }

/* Appendix table */
.appendix-note { font-size: 14px; color: #6b7280; font-style: italic; margin-bottom: 16px; }
.appendix-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.appendix-table thead tr { background: var(--dark-blue, #1C3554); }
.appendix-table thead th { padding: 12px 16px; text-align: left; color: white; font-weight: 600; font-size: 13px; }
.appendix-table tbody tr { border-bottom: 1px solid #e5e7eb; vertical-align: top; }
.appendix-table tbody tr:nth-child(even) { background: #f9fafb; }
.appendix-table tbody td { padding: 12px 16px; line-height: 1.6; color: #374151; }
.appendix-table tbody td:nth-child(2) { width: 50px; text-align: center; }
.appendix-table tbody td:nth-child(3) { width: 80px; }

/* Profile CTA */
.profile-cta { background: var(--dark-blue, #1C3554); border-radius: 12px; padding: 48px 40px; text-align: center; }
.profile-cta h2 { color: white; font-size: 28px; margin-bottom: 12px; }
.profile-cta p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; line-height: 1.6; }
.profile-cta a { display: inline-block; background: white; color: var(--dark-blue, #1C3554); padding: 14px 32px; border-radius: 6px; font-weight: 700; font-size: 16px; text-decoration: none; }
.profile-cta a:hover { background: #f0f4f8; }

@media (max-width: 768px) {
    .profile-body { padding: 32px 20px; }
    .profile-hero { padding: 48px 20px 40px; }
    .profile-hero h1 { font-size: 28px; }
    .initiatives-table, .appendix-table, .snapshot-table { display: block; overflow-x: auto; }
}

/* ============================================================
   FROM THE FIELD — lite RSS feed section
   ============================================================ */
.field-feed { padding: 0 40px 2rem; max-width: 1100px; margin: 0 auto; }
.feed-item { display: flex; flex-direction: column; gap: 4px; padding: .75rem 0; border-bottom: 0.5px solid var(--border-light); text-decoration: none; color: inherit; }
.feed-item:last-child { border-bottom: none; }
.feed-meta { font-size: 11px; font-family: 'IBM Plex Mono', monospace; color: var(--grey-500); letter-spacing: .5px; }
.feed-title { font-size: 15px; color: var(--dark-blue); line-height: 1.5; }
.feed-item:hover .feed-title { color: var(--primary-blue); }
@media (max-width: 768px) { .field-feed { padding: 0 20px 1.5rem; } }

/* ============================================================
   FRONT PAGE — THREE TOPIC AREAS
   ============================================================ */
.fp-writing { padding: 0 40px 48px; max-width: 1100px; margin: 0 auto; }

.fp-topic {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 0.5px solid var(--border-light);
}
.fp-topic:last-of-type { border-bottom: 0.5px solid var(--border-light); }

.fp-topic-label {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
  line-height: 1.3;
}
.fp-topic-blurb {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.fp-topic-all {
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--accent-blue);
  text-decoration: none;
  letter-spacing: .5px;
}
.fp-topic-all:hover { text-decoration: underline; }

.fp-topic-posts { display: flex; flex-direction: column; gap: 12px; }

.fp-post-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  border-radius: 8px;
  border: 0.5px solid var(--border-light);
  background: var(--card-white);
  transition: border-color .15s;
}
.fp-post-row:hover { border-color: var(--primary-blue); }

.fp-post-img { flex-shrink: 0; width: 80px; height: 56px; overflow: hidden; border-radius: 4px; background: var(--grey-50); }
.fp-post-img img { width: 100%; height: 100%; object-fit: cover; }

.fp-post-title { font-size: 14px; font-weight: 500; color: var(--dark-blue); line-height: 1.4; margin-bottom: 4px; }
.fp-post-meta { font-size: 11px; color: var(--grey-500); font-family: 'IBM Plex Mono', monospace; }

.fp-post-empty { font-size: 13px; color: var(--grey-400); font-style: italic; padding: 12px 0; }

.fp-writing-footer {
  text-align: right;
  padding-top: 20px;
}
.fp-writing-footer a {
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--accent-blue);
  text-decoration: none;
  letter-spacing: .5px;
}
.fp-writing-footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .fp-writing { padding: 0 20px 32px; }
  .fp-topic { grid-template-columns: 1fr; gap: 16px; }
}

/* Scenario card content elements */
.scenario-type { font-size: 12px; font-style: italic; color: var(--grey-600); margin-bottom: 10px; }
.scenario-sit { font-size: 14px; line-height: 1.65; color: var(--grey-700); margin-bottom: 10px; }
.scenario-bullets { font-size: 13px; line-height: 1.65; color: var(--grey-600); margin: 0 0 12px 16px; }
.scenario-bullets li { margin-bottom: 4px; }
.scenario-work { font-size: 12px; color: var(--grey-600); line-height: 1.6; margin-bottom: 14px; }
.scenario-peer { font-size: 13px; color: var(--grey-600); font-style: italic; text-align: center; padding: 20px 40px 0; border-top: 0.5px solid var(--border-light); margin-top: 16px; }
