/**
 * WpAutora — Article Content Styles
 * TOC, FAQ, and Heading defaults for generated articles.
 * Loaded via wp_enqueue_style on frontend single post pages.
 */

/* ============================================
   Smooth Scroll
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Blockquote
   ============================================ */
.entry-content blockquote {
    margin: 1.5em 0;
    padding: 1.2em 1.5em 1.2em 1.8em;
    border-left: 4px solid #6366f1;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #374151;
    position: relative;
    line-height: 1.7;
}

.entry-content blockquote::before {
    content: "\201C";
    position: absolute;
    top: -0.2em;
    left: 0.3em;
    font-size: 3em;
    color: #6366f1;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.entry-content blockquote p {
    margin: 0.3em 0;
}

.entry-content blockquote cite {
    display: block;
    margin-top: 0.5em;
    font-size: 0.85em;
    color: #6b7280;
    font-style: normal;
}
