/* ============================================
   AEO CENTERPIECE COMPONENT
   Intent-mapped H2 + 15-30 word deterministic answer
   For LLM primacy and Answer Engine Optimization
   ============================================ */

/* --- AEO Centerpiece Block --- */
.aeo-block {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-card, #0c0c0c);
    border-left: 3px solid var(--text-gold, #c9a55c);
    border-radius: 0;
    transition: all 0.3s ease;
}
.aeo-block:hover {
    border-left-color: var(--text-gold-bright, #e5c37d);
    background: var(--bg-panel, #141414);
}

/* H2 heading inside AEO block — formatted as an intent-mapped question */
.aeo-block h2,
.aeo-block .aeo-heading {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--text-gold-bright, #e5c37d);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* The 15-30 word compressed deterministic answer */
.aeo-block .aeo-answer,
.aeo-block p.aeo-answer {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-white, #fafafa);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    max-width: 72ch;
}
.aeo-block .aeo-answer strong,
.aeo-block p.aeo-answer strong {
    color: var(--text-gold-bright, #e5c37d);
    font-weight: 500;
}

/* Inline AEO Centerpiece (for mid-paragraph emphasis) */
.aeo-inline {
    display: inline;
    color: var(--text-gold, #c9a55c);
    font-weight: 500;
}

/* AEO Grid (for 2-column centerpieces on larger screens) */
.aeo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}
.aeo-grid-2 .aeo-block {
    margin: 0;
}

/* AEO Definition Banner (hero-level deterministic statement) */
.aeo-definition {
    margin: 2rem 0 3rem;
    padding: 2rem 2.5rem;
    background: var(--bg-card, #0c0c0c);
    border: 1px solid var(--border-gold, rgba(201, 165, 92, 0.3));
    text-align: center;
}
.aeo-definition p {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-white, #fafafa);
    font-style: italic;
    line-height: 1.6;
    max-width: 64ch;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .aeo-block {
        padding: 1.2rem 1.5rem;
        margin: 1.5rem 0;
    }
    .aeo-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .aeo-definition {
        padding: 1.5rem;
    }
}
/* ============================================
   END AEO CENTERPIECE COMPONENT
   ============================================ */
