/* AI News Publisher — Frontend Content Styles v2.0.0 */

/* ── Intro ─────────────────────────────────────────── */
.anp-intro {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 28px;
}

/* ── Key Takeaways ──────────────────────────────────── */
.anp-takeaways-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 32px 0;
}
.anp-takeaways-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 14px !important;
    border: none !important;
}
.anp-takeaways-list {
    margin: 0 !important;
    padding: 0 0 0 4px !important;
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.anp-takeaways-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    padding: 0 !important;
    margin: 0 !important;
}
.anp-takeaways-list li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FAQ Block ──────────────────────────────────────── */
.anp-faq-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 36px 0;
}
.anp-faq-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 4px !important;
    border: none !important;
}
.anp-faq-divider {
    border: none !important;
    border-top: 1px solid #e5e7eb !important;
    margin: 14px 0 20px !important;
}
.anp-faq-item {
    padding: 14px 0 14px 18px;
    border-left: 3px solid #4f46e5;
    margin-bottom: 20px;
}
.anp-faq-item:last-child { margin-bottom: 0; }
.anp-faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}
.anp-faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

/* ── Sources Block ──────────────────────────────────── */
.anp-sources-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 28px 0;
    font-size: 13px;
}
.anp-sources-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    margin: 0 0 8px !important;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.anp-sources-block ul { margin: 0; padding-left: 18px; }
.anp-sources-block li { margin-bottom: 4px; }
.anp-sources-block a { color: #2563eb; text-decoration: none; }
.anp-sources-block a:hover { text-decoration: underline; }
.anp-source-date { color: #94a3b8; margin-left: 4px; }

/* ── General readability ────────────────────────────── */
.entry-content p, .post-content p, article p { line-height: 1.8; margin-bottom: 1.2em; color: #374151; }
.entry-content h2, .post-content h2, article h2 { font-size: 1.5em; font-weight: 700; color: #1e293b; margin-top: 2em; margin-bottom: .6em; }
.entry-content h3, .post-content h3, article h3 { font-size: 1.2em; font-weight: 700; color: #1e293b; margin-top: 1.6em; margin-bottom: .5em; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
    .anp-faq-block   { padding: 18px 16px; }
    .anp-faq-item    { padding-left: 14px; }
    .anp-takeaways-block { padding: 16px; }
}

/* ── Reading Time ────────────────────────────────────── */
.anp-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
}
.anp-reading-time::before { content: "⏱"; }

/* ── Table of Contents ──────────────────────────────── */
.anp-toc {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #4f46e5;
    border-radius: 8px;
    padding: 18px 22px;
    margin: 24px 0 32px;
}
.anp-toc-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 10px !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none !important;
}
.anp-toc-list {
    margin: 0 !important;
    padding-left: 20px !important;
}
.anp-toc-list li {
    margin-bottom: 5px !important;
    font-size: 14px;
    line-height: 1.5;
}
.anp-toc-list a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}
.anp-toc-list a:hover { text-decoration: underline; }
