/* SeuFilme.info — Dark Cinema Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --body: #0b0c0c;
    --text: #bfc1c3;
    --link: #ffffff;
    --primary: #f4cc00;
    --accent: var(--primary);
    --card-bg: #141616;
    --card-hover: #1c1e1e;
    --border: #252828;
    --header-bg: #080909;
    --footer-bg: #060707;
    --input-bg: #1a1c1c;
    --muted: #6e7681;
    --success: #3fb950;
    --danger: #e5534b;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    background-color: var(--body);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 { color: var(--link); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
a { color: var(--link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
strong { color: var(--link); }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
img { max-width: 100%; height: auto; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

/* ── HEADER ── */
.site-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo img { height: 34px; width: auto; }
.logo-text { font-size: 1.35rem; font-weight: 800; color: var(--link); letter-spacing: -0.02em; }
.logo-text span { color: var(--primary); }

.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.site-nav a {
    padding: 0.42rem 0.8rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--link); background: var(--card-bg); }

.header-cta { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }

/* ── Buttons ── */
.btn-primary {
    background: var(--primary);
    color: #000 !important;
    padding: 0.52rem 1.15rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-block;
}
.btn-primary:hover { background: #ffd700; transform: translateY(-1px); }

.btn-secondary {
    background: transparent;
    color: var(--link);
    padding: 0.52rem 1.15rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-block;
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.52rem 1.15rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1px solid var(--primary);
    transition: all 0.2s;
    display: inline-block;
}
.btn-outline:hover { background: var(--primary); color: #000 !important; }

.btn-large { padding: 0.85rem 2rem !important; font-size: 1.05rem !important; border-radius: 8px !important; }
.btn-xl { padding: 1rem 2.5rem !important; font-size: 1.1rem !important; border-radius: 8px !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, #0e1010 0%, #111414 60%, #0b0c0c 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244,204,0,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 1.25rem; line-height: 1.15; position: relative; }
.hero h1 .highlight { color: var(--primary); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text); max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.75; position: relative; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 1.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.stat-icon { font-size: 1.7rem; }
.stat-value { font-size: 1rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.82rem; color: var(--text); }

/* ── SECTIONS ── */
.section { padding: 4rem 1.5rem; }
.section-alt { background: var(--card-bg); }
.section-sm { padding: 2.5rem 1.5rem; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.25s;
}
.card:hover { border-color: var(--primary); transform: translateY(-3px); background: var(--card-hover); }
.card-icon { font-size: 1.9rem; margin-bottom: 0.7rem; }
.card h3 { margin-bottom: 0.45rem; font-size: 1.05rem; }
.card p { font-size: 0.88rem; color: var(--text); margin: 0; }

/* ── CATEGORY GRID ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.8rem; }
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem 0.85rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}
.category-card:hover { border-color: var(--primary); background: var(--card-hover); transform: translateY(-2px); }
.cat-icon { font-size: 1.9rem; }
.cat-name { font-size: 0.86rem; font-weight: 600; color: var(--link); }
.cat-count { font-size: 0.75rem; color: var(--muted); }

/* ── ACCESS BOX ── */
.access-box {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(63,185,80,0.12);
    color: var(--success);
    padding: 0.32rem 0.85rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.current-url {
    font-family: 'Inter', monospace;
    font-size: 0.97rem;
    color: var(--primary);
    background: rgba(244,204,0,0.07);
    padding: 0.7rem 1.15rem;
    border-radius: 8px;
    margin: 1rem 0;
    word-break: break-all;
    border: 1px solid rgba(244,204,0,0.15);
}
.last-check { font-size: 0.8rem; color: var(--muted); margin-top: 0.65rem; }

/* ── ALERTS ── */
.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; }
.alert-warning { background: rgba(244,204,0,0.07); border-left: 3px solid var(--primary); }
.alert-info { background: rgba(56,139,253,0.07); border-left: 3px solid #388bfd; }
.alert-success { background: rgba(63,185,80,0.07); border-left: 3px solid var(--success); }
.alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
}
.step-number {
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 0.88rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-content h3 { font-size: 0.97rem; margin-bottom: 0.2rem; }
.step-content p { font-size: 0.88rem; color: var(--text); margin: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-question {
    padding: 1.1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--link);
    font-size: 0.93rem;
    user-select: none;
    list-style: none;
}
.faq-question:hover { background: var(--card-hover); }
.faq-toggle { font-size: 1.4rem; color: var(--primary); transition: transform 0.25s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 1rem 1.2rem 1.15rem;
    color: var(--text);
    font-size: 0.91rem;
    line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.blog-card-body { padding: 1.2rem; flex: 1; }
.blog-tag {
    display: inline-block;
    background: rgba(244,204,0,0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 0.97rem; margin-bottom: 0.45rem; color: var(--link); line-height: 1.42; }
.blog-card p { font-size: 0.85rem; color: var(--text); margin: 0; line-height: 1.55; }
.blog-card-footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--muted);
}
.read-more { color: var(--primary); font-weight: 600; font-size: 0.82rem; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--card-bg); color: var(--link); font-weight: 600; padding: 0.8rem 1rem; text-align: left; border-bottom: 2px solid var(--border); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.data-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.badge-active { color: var(--success); font-weight: 600; }
.badge-inactive { color: var(--muted); }

/* ── BREADCRUMB ── */
.breadcrumb-bar { padding: 0.65rem 1.5rem; background: var(--header-bg); border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.breadcrumb a { color: var(--text); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--muted); }
.breadcrumb .current { color: var(--link); }

/* ── PAGE HEADER ── */
.page-header { padding: 3rem 1.5rem 2.5rem; background: linear-gradient(180deg, #0f1111 0%, var(--body) 100%); }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--text); font-size: 1rem; max-width: 640px; margin: 0; }

/* ── CONTENT BODY ── */
.content-body { font-size: 0.97rem; line-height: 1.8; }
.content-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.content-body h3 { margin-top: 1.75rem; margin-bottom: 0.7rem; }
.content-body ul, .content-body ol { margin-bottom: 1rem; }
.content-body li { margin-bottom: 0.5rem; }
.content-body blockquote { border-left: 3px solid var(--primary); padding: 0.5rem 0 0.5rem 1.25rem; color: var(--text); margin: 1.5rem 0; font-style: italic; }

/* ── CHECKLIST ── */
.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.93rem; }
.checklist li::before { content: '✅'; flex-shrink: 0; margin-top: 0.05rem; }

/* ── ALTERNATIVES ── */
.alt-list { display: flex; flex-direction: column; gap: 0.8rem; }
.alt-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s;
}
.alt-item:hover { border-color: var(--primary); }
.alt-number { background: var(--primary); color: #000; font-weight: 800; font-size: 0.82rem; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alt-info h3 { font-size: 0.93rem; margin-bottom: 0.18rem; }
.alt-info p { font-size: 0.82rem; color: var(--text); margin: 0; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.38rem; }
.form-group label { font-size: 0.86rem; font-weight: 600; color: var(--link); }
.form-group input, .form-group textarea, .form-group select {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 0.72rem 1rem;
    color: var(--link);
    font-size: 0.91rem;
    font-family: inherit;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }

/* ── FILM GRID ── */
.film-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 1rem; }
.film-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.25s; }
.film-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.film-poster { width: 100%; aspect-ratio: 2/3; background: #1a1c1c; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.film-info { padding: 0.6rem 0.7rem; }
.film-title { font-size: 0.82rem; font-weight: 600; color: var(--link); margin-bottom: 0.18rem; line-height: 1.3; }
.film-meta { font-size: 0.73rem; color: var(--muted); }
.film-rating { color: var(--primary); font-weight: 700; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: rgba(244,204,0,0.05);
    border: 1px solid rgba(244,204,0,0.22);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}
.highlight-box a { color: var(--primary); font-weight: 700; font-size: 1.02rem; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }

/* ── FOOTER ── */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--border); padding: 3rem 1.5rem 2rem; margin-top: 4rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}
.footer-about .logo { margin-bottom: 0.9rem; }
.footer-about p { font-size: 0.86rem; color: var(--text); line-height: 1.65; margin: 0; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.9rem; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    font-size: 0.8rem;
    color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--text); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-disclaimer {
    font-size: 0.76rem;
    color: var(--muted);
    max-width: 1200px;
    margin: 1.25rem auto 0;
    line-height: 1.55;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .site-nav, .header-cta { display: none; }
    .site-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 57px;
        left: 0;
        right: 0;
        background: var(--header-bg);
        border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem;
        gap: 0.2rem;
        z-index: 99;
    }
    .site-nav.open a { padding: 0.6rem 0.8rem; }
    .hamburger { display: flex; }
    .hero { padding: 3rem 1.25rem 2.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .section { padding: 3rem 1.25rem; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
    .film-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── UTILS ── */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-muted { color: var(--muted) !important; }
.text-success { color: var(--success) !important; }
.fw-700 { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── BREADCRUMB VARIANTS (normaliza estruturas geradas) ── */

/* Wrappers alternativos */
.breadcrumb-section {
    padding: 0.65rem 1.5rem;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
}

/* nav.breadcrumb sozinho (sem .breadcrumb-bar wrapper) */
nav.breadcrumb {
    padding: 0.65rem 1.5rem;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    max-width: none;
    margin: 0;
}

/* Remove padding extra quando nav.breadcrumb já está dentro de um wrapper */
.breadcrumb-bar nav.breadcrumb,
.breadcrumb-section nav.breadcrumb {
    padding: 0;
    background: none;
    border: none;
    max-width: 1200px;
    margin: 0 auto;
}

/* Separadores alternativos */
.breadcrumb .breadcrumb-sep,
.breadcrumb span[aria-hidden="true"] {
    color: var(--muted);
}

/* Página atual — variantes */
.breadcrumb .breadcrumb-current,
.breadcrumb [aria-current="page"] {
    color: var(--link);
}

/* Estrutura ol/li */
.breadcrumb ol,
.breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.breadcrumb ol li,
.breadcrumb .breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    color: var(--text);
    font-size: 0.8rem;
}
.breadcrumb ol li + li::before,
.breadcrumb .breadcrumb-list li + li::before {
    content: '›';
    color: var(--muted);
}
.breadcrumb ol li a,
.breadcrumb .breadcrumb-list li a {
    color: var(--text);
}
.breadcrumb ol li a:hover,
.breadcrumb .breadcrumb-list li a:hover {
    color: var(--primary);
}
.breadcrumb ol li[aria-current="page"],
.breadcrumb .breadcrumb-list li[aria-current="page"] {
    color: var(--link);
}

/* Bootstrap-style breadcrumb-item */
.breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text);
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--muted);
}
.breadcrumb .breadcrumb-item a { color: var(--text); }
.breadcrumb .breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb .breadcrumb-item.breadcrumb-current,
.breadcrumb .breadcrumb-item.active { color: var(--link); }

/* breadcrumb-separator variant */
.breadcrumb .breadcrumb-separator { color: var(--muted); }

/* ── ARTICLE PAGE STYLES ── */
.article-hero {
    background: linear-gradient(135deg, #0d0f0f 0%, #111414 100%);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}
.article-hero .container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.article-hero h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); line-height: 1.25; margin-bottom: 1rem; }
.article-tag {
    display: inline-block;
    background: rgba(244,204,0,0.12);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.article-meta {
    font-size: 0.83rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.article-meta .meta-dot { color: var(--muted); }
.article-body { padding: 2.5rem 0 3rem; }
.article-body .container-narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.article-body p { line-height: 1.8; margin-bottom: 1.1rem; }
.article-body h2 { font-size: 1.5rem; margin-top: 2.8rem; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); }
.article-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
