/* =============================================
   BLOG ARTICLE — Shared Page Styles
   Union of the two inline <style> blocks duplicated across
   blog/anonymous-voice-chat.html and blog/omegle-alternative.html —
   same rules from both, deduplicated, plus both articles' unique
   card variants (.insight-card, .platform-card) kept side by side so
   this one file works for any article regardless of which card style
   it uses. Built on the tokens defined in ../base.css.

   The two existing articles still carry their own inline copies
   (left untouched) — only the new posts below reference this file.
   Migrating the existing two to this shared file later is a purely
   cosmetic cleanup, not required for anything to work correctly.
   ============================================= */

.page-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 1.5rem;
    background: rgba(7, 8, 15, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.page-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.04em;
    background: linear-gradient(130deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.page-back {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.page-back:hover {
    color: var(--text-1);
}

.article-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.article-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}

.article-main h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.article-meta {
    font-size: .78rem;
    color: var(--text-3);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin: 2rem 0 .75rem;
    color: var(--text-1);
}

.article-main p {
    font-size: .925rem;
    color: var(--text-2);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.article-main ul {
    margin: .5rem 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-main ul li {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.75;
}

.callout {
    background: var(--accent-soft);
    border: 1px solid rgba(61, 127, 255, .25);
    border-radius: var(--r-md);
    padding: 16px 20px;
    margin: 1.5rem 0;
    font-size: .9rem;
    color: var(--text-1);
    line-height: 1.65;
}

.insight-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 20px;
    margin: 1rem 0;
}

.insight-card h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 6px;
}

.insight-card p {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 0;
}

.platform-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 20px;
    margin: 1rem 0;
}

.platform-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 6px;
}

.platform-card p {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 0;
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

.cta-box {
    background: var(--accent-soft);
    border: 1px solid rgba(61, 127, 255, .25);
    border-radius: var(--r-md);
    padding: 20px 22px;
    margin: 2rem 0;
    text-align: center;
}

.cta-box p {
    color: var(--text-1);
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
    transition: opacity .2s;
}

.cta-btn:hover {
    opacity: .85;
}

@media (max-width: 600px) {
    .article-main {
        padding: 2rem 1rem 4rem;
    }

    .article-main h1 {
        font-size: 1.6rem;
    }
}