/* 
 * Neon Escape Blog Main Design System 
 */

/* ── Home page: featured post ── */
.featured-post-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.featured-post-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0.75rem 0 1rem;
    line-height: 1.2;
}

.featured-post-title a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: 0.25s;
}

.featured-post-title a:hover {
    color: var(--text-heading);
    text-shadow: 0 0 12px var(--neon-blue);
}

.featured-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.featured-post-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.featured-post-thumb {
    border-radius: 10px;
    overflow: hidden;
}

/* ── Home page: posts grid ── */
.home-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ── Blog card (shared: home + map) ── */
.blog-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.blog-card-thumb {
    border-bottom: 1px solid var(--glass-border);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0.5rem 0 0.5rem;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--text-heading);
    text-decoration: none;
    transition: 0.25s;
}

.blog-card-title a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .featured-post-inner {
        grid-template-columns: 1fr;
    }
    .featured-post-image {
        order: -1;
    }
}

/* ── Post hero ── */
.post-hero {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
}

.hero-kicker {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--neon-blue-text);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 5px 16px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.08), inset 0 0 8px rgba(0, 243, 255, 0.04);
}

.hero-title {
	font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.7rem, 5vw, 2.9rem);
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.2;
    margin: 0 auto 1.25rem;
    max-width: 780px;
}

.hero-title-accent {
    color: var(--neon-blue);
    text-shadow: 0 0 16px rgba(0, 243, 255, 0.55);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 2rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-meta span::before {
    content: '//';
    color: var(--neon-blue);
    opacity: 0.55;
    font-family: 'Orbitron', sans-serif;
}

.logo-light { 
	display: none; 
}

@media (max-width: 768px) {
    .post-hero     { padding: 2rem 0 1.5rem; }
    .hero-title    { font-size: 1.5rem; letter-spacing: 2px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-meta     { gap: 1rem; font-size: 9px; }
}

:root {
    --bg-dark: #0a0a0c;
    --bg-light: #f5f5f5;
    --neon-blue: #00f3ff;
	--neon-blue-text: #00f3ff;
    --neon-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #f0f0f0;
	
	--text-primary:   #f0f0f0;              /* flips to #1a1a1a in light */
	--text-secondary: rgba(240,240,240,.6); /* flips to rgba(30,30,30,.65) */
	--text-muted:     rgba(240,240,240,.45);/* flips to rgba(30,30,30,.5) */
	--text-heading:   #ffffff;              /* flips to #0a0a0c */
	
	--logo-filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.5));
}

@media (prefers-color-scheme: light) {
    :root {
        --bg-dark: #f5f5f5;
        --glass-bg: rgba(0, 0, 0, 0.05);
        --glass-border: rgba(0, 0, 0, 0.1);
        --text-light: #1a1a1a;
		--neon-blue: #0099aa;           /* brighter than 007a8a for borders/accents */
		--neon-blue-text: #006070;      /* darker for actual text readability */
		--neon-white: #0a0a0c;
		
		--text-primary:   #1a1a1a;
        --text-secondary: rgba(30, 30, 30, .65);
        --text-muted:     rgba(30, 30, 30, .5);
        --text-heading:   #0a0a0c;
		
		--logo-filter: drop-shadow(0 0 4px rgba(0, 153, 170, 0.3));
    }
	.logo-dark  { display: none; }
    .logo-light { display: block; }
	.entry-content,
    .entry-content p,
    .entry-content em,
    .hero-subtitle,
    .hero-meta,
    .tl-body,
    .tl-date,
    .article-lead,
    .article-callout p,
    .article-faq-a,
    .brand-card p {
        text-shadow: none;
	}
}

* { box-sizing: border-box; }

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background:
                radial-gradient(ellipse at 20% 50%, rgba(0, 243, 255, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 243, 255, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 40% 0%, rgba(0, 243, 255, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at 60% 60%, rgba(0, 243, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(0, 243, 255, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 90% 20%, rgba(0, 243, 255, 0.12) 0%, transparent 60%);
    animation: fogDrift 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes fogDrift {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 0.9; }
}

/* Flying Background Elements */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flying-element {
    position: fixed;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
}

.flying-element.padlock {
    width: 80px;
    height: 80px;
    background: url('../images/padlock.webp') no-repeat center;
    background-size: contain;
    animation: float-padlock 25s infinite ease-in-out;
}

.flying-element.key {
    width: 70px;
    height: 70px;
    background: url('../images/key.png') no-repeat center;
    background-size: contain;
    animation: float-key 30s infinite ease-in-out;
}

.flying-element.running-man {
    width: 75px;
    height: 75px;
    background: url('../images/running-man.png') no-repeat center;
    background-size: contain;
    animation: float-running 28s infinite ease-in-out;
}

@keyframes float-padlock {
    0% { top: -100px; left: 10%; opacity: 0; }
    10% { opacity: 0.15; }
    50% { top: 50%; left: 20%; opacity: 0.15; }
    90% { opacity: 0; }
    100% { top: 110vh; left: 15%; opacity: 0; }
}

@keyframes float-key {
    0% { top: 20%; right: 5%; opacity: 0; }
    10% { opacity: 0.15; }
    50% { top: 50%; right: 25%; opacity: 0.15; }
    90% { opacity: 0; }
    100% { top: 110vh; right: 30%; opacity: 0; }
}

@keyframes float-running {
    0% { bottom: -100px; left: 50%; opacity: 0; }
    10% { opacity: 0.15; }
    50% { bottom: 50%; left: 60%; opacity: 0.15; }
    90% { opacity: 0; }
    100% { bottom: 110vh; left: 70%; opacity: 0; }
}

main, header, footer {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-2 { gap: 2rem; }
.py-1 { padding: 1rem 0; }
.py-2 { padding: 2rem 0; }
.mt-4 { margin-top: 4rem; }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, .site-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.neon-text {
    color: var(--neon-blue-text);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

.neon-text-subtle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}

/* Glassmorphism Components */
.glass-header, .glass-footer, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-header {
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.glass-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

/* Neon Borders */
.neon-border {
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2), inset 0 0 15px rgba(0, 243, 255, 0.1);
}

/* Map Styling */
#escape-map {
    height: 600px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3), inset 0 0 30px rgba(0, 243, 255, 0.1);
    margin: 2rem 0;
}

/* Custom Map Popup Styling */
.leaflet-popup-content-wrapper {
    background: rgba(10, 10, 12, 0.9) !important;
    color: #fff !important;
    border: 1px solid var(--neon-blue);
    backdrop-filter: blur(8px);
}

.leaflet-popup-tip {
    background: var(--neon-blue) !important;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    filter: var(--logo-filter);
}

/* Navigation */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--neon-white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.8rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    #escape-map {
        height: 400px;
    }

    .glass-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    #escape-map {
        height: 300px;
    }
}

/* ============================================================
   ARTICLE / SINGLE POST COMPONENTS
   Append these to the bottom of main.css.
   All values use existing CSS variables from the design system.
   ============================================================ */

/* ── Featured image ── */
.post-featured-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ── Entry article wrapper (replaces the old glass-card on <article>) ── */
.entry-article {
    position: relative;
}

/* ── Entry header card sizing ── */
.entry-header.glass-card {
    padding: 1.75rem 2rem;
}

.entry-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    letter-spacing: 2px;
}

.entry-meta {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Entry content: base typography ── */
.entry-content {
    font-size: 17px;
    line-height: 1.78;
    color: var(--text-primary);
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content strong {
    font-weight: 600;
    color: var(--text-heading);
}

.entry-content em {
    color: var(--neon-blue-text);
    font-style: italic;
}

.entry-content a {
    color: var(--neon-blue-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: 0.25s;
}

.entry-content a:hover {
    color: var(--neon-white);
    text-shadow: 0 0 8px var(--neon-blue);
}

.entry-content hr {
    border: none;
    border-top: 1px solid rgba(0, 243, 255, 0.12);
    margin: 3rem 0;
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.07);
}

/* ── Section headings inside content ── */
.entry-content h2 {
    font-size: clamp(1rem, 2.4vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 3.5rem 0 1rem;
    padding-bottom: 0.75rem;
    position: relative;
    color: var(--text-heading);
    line-height: 1.25;
}

.entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.6);
}

.entry-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--neon-blue-text);
    margin: 2rem 0 0.6rem;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.3);
}

/* ── Article lead / intro paragraph ── */
.article-lead {
    font-size: 1.08rem;
    line-height: 1.82;
    color: var(--text-secondary);
    border-left: 3px solid var(--neon-blue-text);
    padding: 0.25rem 0 0.25rem 1.25rem;
    margin-bottom: 2.5rem;
    box-shadow: -3px 0 16px rgba(0, 243, 255, 0.15);
}

/* ── Pull quote ── */
.article-pullquote {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    line-height: 1.65;
    color: var(--neon-blue-text);
    text-shadow: 0 0 14px rgba(0, 243, 255, 0.3);
    border-top: 1px solid rgba(0, 243, 255, 0.18);
    border-bottom: 1px solid rgba(0, 243, 255, 0.18);
    padding: 1.75rem 0;
    margin: 3rem 0;
    text-align: center;
}

/* ── Callout box ── */
.article-callout {
    background: rgba(0, 243, 255, 0.04);
    border: 1px solid rgba(0, 243, 255, 0.18);
    border-left: 3px solid var(--neon-blue);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.05), inset 0 0 12px rgba(0, 243, 255, 0.025);
}

.article-callout-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon-blue);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.article-callout p {
    margin-bottom: 0;
    font-size: 0.91rem;
    color: var(--text-secondary);
}

/* ── Image blocks ── */
.article-img-block {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.18);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.08), inset 0 0 20px rgba(0, 243, 255, 0.03);
}

.article-img-block img {
    width: 100%;
    height: auto;
    display: block;
}

.article-img-caption {
    padding: 0.65rem 1.25rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-style: italic;
}

/* ── Visual section wrapper (for timeline, chart, etc.) ── */
.visual-section {
    margin: 3rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.visual-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.visual-section-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon-blue);
    background: rgba(0, 243, 255, 0.055);
    padding: 0.65rem 1.5rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.35);
}

.visual-inner {
    padding: 1.75rem;
}

/* ── Timeline ── */
.article-timeline {
    position: relative;
    padding: 0.5rem 0;
}

.article-timeline::before {
    content: '';
    position: absolute;
    left: 18px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--neon-blue), rgba(0, 243, 255, 0.08));
    box-shadow: 0 0 6px rgba(0, 243, 255, 0.25);
}

.tl-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0 1.25rem;
    margin-bottom: 2.25rem;
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-blue);
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.9), 0 0 20px rgba(0, 243, 255, 0.3);
    margin: 0.5rem 0 0 13px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}


.tl-dot.tl-dot--dim {
    background: var(--text-muted);
    box-shadow: none;
}

.tl-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-blue);
    margin-bottom: 0.25rem;
    display: block;
    text-shadow: 0 0 6px rgba(0, 243, 255, 0.4);
}


.tl-date--dim  { color: var(--text-muted); text-shadow: none; }

.tl-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}

.tl-body {
    font-size: 0.85rem;
    line-height: 1.72;
    color: var(--text-secondary);
    margin: 0;
}

.tl-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
    margin: 0 5px 7px 0;
}

.tl-tag--accent {
    background: rgba(0, 243, 255, 0.08);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 243, 255, 0.25);
}

.tl-tag--dim {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

/* ── Brand card grid ── */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.brand-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem 1.4rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
}

.brand-card:hover {
    border-color: rgba(0, 243, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.08);
}

.brand-card--featured {
    border-color: rgba(0, 243, 255, 0.35) !important;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1), inset 0 0 15px rgba(0, 243, 255, 0.04);
}

.brand-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
}

.brand-card-origin {
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon-blue);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 6px rgba(0, 243, 255, 0.3);
}

.brand-card p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* ── Chart wrapper ── */
.chart-wrap,
.neon-chart-wrap {
    position: relative;
    width: 100%;
    height: 300px;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 1rem;
    font-size: 11px;
    color: var(--text-secondary);
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.chart-legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}

/* ── FAQ block ── */
.article-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem 0;
}

.article-faq-item:last-child {
    border-bottom: none;
}

.article-faq-q {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-heading);
    margin-bottom: 0.65rem;
    padding-left: 1.25rem;
    position: relative;
}

.article-faq-q::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    text-shadow: 0 0 6px rgba(0, 243, 255, 0.5);
}

.article-faq-a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    padding-left: 1.25rem;
}

/* ── CTA box ── */
.article-cta {
    background: rgba(0, 243, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.22);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin: 4rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.07), inset 0 0 30px rgba(0, 243, 255, 0.025);
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}

.article-cta h3 {
    font-size: 1.1rem;
    color: var(--text-heading);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.article-cta p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.article-cta-btn {
    display: inline-block;
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.85rem 2.25rem;
    border-radius: 4px;
    text-decoration: none !important;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.12), inset 0 0 12px rgba(0, 243, 255, 0.04);
}

.article-cta-btn:hover {
    background: rgba(0, 243, 255, 0.08);
    color: var(--neon-white) !important;
    box-shadow: 0 0 24px rgba(0, 243, 255, 0.3), inset 0 0 16px rgba(0, 243, 255, 0.08);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.6);
}

/* ── Kicker / label badge ── */
.article-kicker {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--neon-blue);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 5px 16px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.08), inset 0 0 8px rgba(0, 243, 255, 0.04);
}

/* ── Article footer card ── */
.entry-footer.glass-card {
    padding: 1.25rem 1.75rem;
}

.entry-footer .post-tags a {
    color: var(--neon-blue);
    font-size: 0.85rem;
    text-decoration: none;
}

.entry-footer .post-tags a:hover {
    text-shadow: 0 0 8px var(--neon-blue);
}

.entry-footer .post-navigation a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .entry-title { font-size: 1.4rem; }
    .visual-inner { padding: 1.25rem; }
    .brand-grid { grid-template-columns: 1fr; }
    .chart-wrap { height: 240px; }
    .article-cta { padding: 1.75rem 1.25rem; }
    .entry-header.glass-card { padding: 1.25rem; }
}

@media (max-width: 480px) {
    .entry-content h2 { font-size: 0.9rem; }
    .tl-title { font-size: 0.78rem; }
    .brand-card-title { font-size: 0.78rem; }
}
