/* =====================================================
   AI News Publisher — Frontend Content Block Styles
   ===================================================== */

/* ── TL;DR Block ─────────────────────────────────── */
.anp-tldr-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eef2ff;
    border-left: 4px solid #4f46e5;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.anp-tldr-label {
    font-weight: 800;
    color: #4f46e5;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 15px;
    margin-top: 1px;
}

.anp-tldr-text {
    color: #374151;
}

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

/* ── Key Takeaways Block ─────────────────────────── */
.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;
    padding: 0 !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;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FAQ Block ───────────────────────────────────── */
.anp-faq-block {
    background: #ffffff;
    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;
    padding: 0 !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;
}

/* ── General readability improvements ────────────── */
.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: 0.6em;
}

.entry-content h3,
.post-content h3,
article h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}

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