/* ============================================
   ARTICLE / SEO PAGE STYLES
   ============================================ */
.article-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.article-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-page h2 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text);
}

.article-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.article-page h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text);
}

.article-page p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text2);
    margin-bottom: 16px;
}

.article-page > p:first-of-type {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

.article-page strong {
    color: var(--text);
    font-weight: 600;
}

.article-page ul,
.article-page ol {
    padding-left: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-page li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text2);
    padding: 10px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    list-style: none;
    transition: border-color var(--tr);
}

.article-page li:hover {
    border-color: var(--border2);
}

.article-page blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 45, 107, .06), rgba(139, 92, 246, .06));
    border-left: 3px solid var(--pink);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.article-page blockquote p {
    margin-bottom: 0;
    color: var(--text);
}

/* --- Article TOC --- */
.article-toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.article-toc p {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-toc ol {
    padding-left: 0;
    counter-reset: toc;
    gap: 4px;
}

.article-toc li {
    background: none;
    border: none;
    padding: 6px 0;
    counter-increment: toc;
}

.article-toc li::before {
    content: counter(toc) ".";
    color: var(--pink);
    font-weight: 600;
    margin-right: 8px;
}

.article-toc li:hover {
    border-color: transparent;
}

.article-toc a {
    color: var(--text2);
    transition: color var(--tr);
    font-size: 14px;
}

.article-toc a:hover {
    color: var(--pink);
}

/* --- FAQ Section in Article --- */
.article-faq {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.article-faq h2 {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.article-faq .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color var(--tr);
}

.article-faq .faq-item:hover {
    border-color: var(--border2);
}

.article-faq .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text);
}

.article-faq .faq-question i {
    font-size: 12px;
    color: var(--text3);
    transition: transform var(--tr);
    flex-shrink: 0;
}

.article-faq .faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--pink);
}

.article-faq .faq-item.open {
    border-color: var(--pink);
}

.article-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.article-faq .faq-item.open .faq-answer {
    max-height: 400px;
}

.article-faq .faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Article CTA --- */
.article-cta {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #1a0a14, var(--card));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-cta p {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.article-cta .btn {
    position: relative;
    z-index: 1;
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text2);
    transition: color var(--tr);
}

.breadcrumb a:hover {
    color: var(--pink);
}

.breadcrumb span {
    color: var(--text3);
}
