/* ================================================================
   News Components — prefix: nc-
   Inserted via Component Palette; rendered inside .nd-article.
   ================================================================ */

/* ── 1. Executive Quote ── */
.nc-exec-quote {
    margin: 36px 0;
    padding: 24px 28px;
    background: #faf6f0;
    border-left: 4px solid var(--primary-orange, #fa6a02);
    border-radius: 0 12px 12px 0;
}
.nc-exec-quote blockquote {
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 600;
    color: #121212;
    line-height: 1.65;
    margin: 0 0 12px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}
.nc-exec-quote cite {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    font-style: normal;
    color: var(--primary-orange, #fa6a02);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── 2. Insight / Highlight Box ── */
.nc-highlight-box {
    margin: 28px 0;
    padding: 20px 24px;
    background: #fff6f0;
    border: 1.5px solid #ffd9bc;
    border-radius: 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.nc-highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.2;
    margin-top: 2px;
}
.nc-highlight-body { flex: 1; }
.nc-highlight-body strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #121212;
    margin-bottom: 6px;
}
.nc-highlight-body p {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── 3. Dynamic Stat Card ── */
.nc-stat-card {
    margin: 28px 0;
    padding: 32px 28px;
    background: #121212;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nc-stat-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
    line-height: 1;
}
.nc-stat-body { flex: 1; }
.nc-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.nc-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

/* ── 4. Step-by-Step List ── */
.nc-step-list {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: nc-step-counter;
}
.nc-step-item {
    counter-increment: nc-step-counter;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.65;
    padding: 14px 18px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
}
.nc-step-item::before {
    content: counter(nc-step-counter);
    flex-shrink: 0;
    width: 30px;
    min-width: 30px;
    height: 30px;
    background: var(--primary-orange, #fa6a02);
    color: #fff;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    margin-top: 2px;
}

/* ── 5. Key Takeaways (Callout) ── */
.nc-callout {
    margin: 28px 0;
    padding: 20px 24px;
    background: #f0f7ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 12px;
}
.nc-callout-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.nc-callout-icon { font-size: 1.2rem; line-height: 1; }
.nc-callout-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.nc-callout-list { display: flex; flex-direction: column; gap: 10px; }
.nc-callout-item {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: #1e3a5f;
    line-height: 1.6;
}
.nc-callout-item::before { content: '⚡'; flex-shrink: 0; }

/* ── 6. Author Note ── */
.nc-author-note {
    margin: 28px 0;
    padding: 20px 24px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.nc-author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--primary-orange, #fa6a02);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.nc-author-body { flex: 1; }
.nc-author-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #121212;
    margin-bottom: 2px;
}
.nc-author-role {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-orange, #fa6a02);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.nc-author-note-text {
    font-size: 0.84rem;
    color: #555;
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

/* ── 7. Info Banner ── */
.nc-info-banner {
    margin: 28px 0;
    padding: 16px 24px;
    background: #1e40af;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.nc-info-banner-icon { font-size: 1.4rem; flex-shrink: 0; }
.nc-info-banner-text { font-size: 0.9rem; font-weight: 600; color: #fff; margin: 0; line-height: 1.5; }

/* ── 8. Warning Box ── */
.nc-warning-box {
    margin: 28px 0;
    padding: 20px 24px;
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.nc-warning-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; margin-top: 2px; }
.nc-warning-body { flex: 1; }
.nc-warning-body strong { display: block; font-size: 0.88rem; font-weight: 800; color: #9a3412; margin-bottom: 6px; }
.nc-warning-body p { font-size: 0.84rem; color: #7c2d12; line-height: 1.65; margin: 0; }

/* ── 9. Pull Quote ── */
.nc-pull-quote {
    margin: 40px 0;
    text-align: center;
    padding: 0 32px;
}
.nc-pull-quote-mark {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-orange, #fa6a02);
    line-height: 0.6;
    margin-bottom: 16px;
    display: block;
    font-family: Georgia, serif;
}
.nc-pull-quote blockquote {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: #121212;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

/* ── 10. FAQ Item ── */
.nc-faq-item {
    margin: 16px 0;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}
.nc-faq-question {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #121212;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.nc-faq-question::after { content: '↓'; color: var(--primary-orange, #fa6a02); font-size: 1rem; flex-shrink: 0; }
.nc-faq-answer { padding: 16px 20px; font-size: 0.85rem; color: #555; line-height: 1.7; background: #fff; margin: 0; }

/* ── 11. Section Divider ── */
.nc-section-divider {
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.nc-section-divider::before,
.nc-section-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.nc-divider-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-orange, #fa6a02);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* ── 12. Comparison (Pros / Cons) ── */
.nc-comparison {
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}
.nc-comparison-col { padding: 20px 22px; }
.nc-comparison-col:first-child { border-right: 1.5px solid #e5e7eb; }
.nc-comparison-yes { background: #f0fdf4; }
.nc-comparison-no { background: #fff1f2; }
.nc-comparison-head {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.nc-comparison-yes .nc-comparison-head { color: #15803d; }
.nc-comparison-no .nc-comparison-head { color: #be123c; }
.nc-comparison-list { display: flex; flex-direction: column; gap: 8px; }
.nc-comparison-item {
    font-size: 0.84rem;
    color: #333;
    line-height: 1.55;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nc-comparison-item:last-child { border-bottom: none; }
.nc-comparison-yes .nc-comparison-item::before { content: '✓ '; color: #15803d; font-weight: 700; }
.nc-comparison-no .nc-comparison-item::before { content: '✗ '; color: #be123c; font-weight: 700; }
