/* 🎬 BLOG ESTILO NETFLIX (SOMA 137) - ULTRA DETAILED */

:root {
    /* Cores Primárias */
    --neon-green: #CCFF00;
    --neon-green-hover: #D1FF19;
    --deep-purple: #7300B2;
    --neon-purple: #A900FF;

    /* Cores Complementares */
    --bg-black: #000000;
    --bg-card: #141414;
    --bg-card-hover: #1F1F1F;
    --bg-divider: #2A2A2A;
    --text-white: #FFFFFF;
    --text-title: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.6);

    /* Fontes */
    --font-netflix: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body.blog-page {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-netflix);
    overflow-x: hidden;
    margin: 0;
}

/* 🎯 HEADER FIXO */
.blog-nav {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(204, 255, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    transition: background 0.3s ease;
}

.blog-nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo-blog {
    height: 28px;
    color: var(--neon-green);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-blog:hover {
    filter: drop-shadow(0 0 8px rgba(204, 255, 0, 0.4));
}

.nav-breadcrumb {
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* Search Bar */
.nav-search-container {
    position: relative;
    width: 400px;
}

.nav-search-input {
    width: 100%;
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 16px 10px 44px;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-search-input:focus {
    background: rgba(42, 42, 42, 1);
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
    outline: none;
}

.nav-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    pointer-events: none;
}

/* Right Nav */
.blog-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link-item:hover {
    color: var(--neon-green);
    transform: translateY(-2px);
}

.btn-demo-header {
    background: rgba(204, 255, 0, 0.05);
    /* Very subtle transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 10px 24px;
    border-radius: 100px;
    /* Full Pill Shape */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;

    /* Initial Glow */
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.1);
}

.btn-demo-header:hover {
    background: var(--neon-green);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.5), 0 0 60px rgba(204, 255, 0, 0.2);
    border-color: var(--neon-green);
}

.btn-demo-header:active {
    transform: translateY(0);
}

/* 🎬 HERO BANNER */
/* 🎬 HERO BANNER (Split Layout) */
.blog-hero {
    margin-top: 100px;
    width: 100%;
    position: relative;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    background: none;
    min-height: auto;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Give image slightly more space */
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 40px 0 60px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-badge {
    background: var(--neon-green);
    /* Changed to Green for visibility on dark */
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    display: inline-block;
    align-self: flex-start;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-weight: 500;
}

.meta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-hero-primary {
    background: var(--neon-green);
    color: #000;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    /* Updated radius */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    background: var(--neon-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

.btn-hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    background: transparent;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--neon-green);
    background: rgba(204, 255, 0, 0.05);
    color: var(--neon-green);
}

/* Image Side */
.hero-image-container {
    position: relative;
    height: 500px;
    border-radius: 24px;
    perspective: 1000px;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(-2deg);
    /* Subtle 3D effect */
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-main-img {
    transform: rotateY(0deg);
}

.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--neon-green);
    z-index: 1;
    filter: blur(80px);
    opacity: 0.2;
    transition: opacity 0.5s;
}

.hero-image-container:hover .hero-img-glow {
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-content {
        align-items: center;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-image-container {
        height: 350px;
    }

    .hero-main-img {
        transform: rotateY(0);
    }
}

/* ... (omitted styles) ... */

/* 🎚️ FILTER BAR (Minimalist Redesign) */
.filter-bar {
    background: transparent;
    /* Cleaner look */
    padding: 0 40px;
    margin-bottom: 40px;
    position: relative;
    /* Not sticky anymore if user wants clean, or sticky with glass */
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 60px;
    /* More bottom margin */
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle divider */
    padding-bottom: 24px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 32px;
    /* Much more spacing */
}

.filter-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-right: 16px;
    display: none;
    /* Hiding "Explorar por" for cleaner look, or verify if user wants it */
}

.filter-pills {
    display: flex;
    gap: 16px;
    /* Spacing between pills */
    align-items: center;
}

.filter-chip {
    background: transparent;
    border: none;
    padding: 8px 12px;
    font-size: 15px;
    /* Readable size */
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.filter-chip:hover {
    color: #FFF;
}

.filter-chip.active {
    color: #FFF;
    font-weight: 600;
}

.filter-chip.active::after {
    content: '';
    position: absolute;
    bottom: -25px;
    /* Stick to border-bottom of container */
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-green);
    box-shadow: 0 -2px 10px var(--neon-green);
}

/* Soma School Gold Button (Fixed) */
.soma-school-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    border-radius: 100px !important;
    /* Pill shape */
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
    margin-left: 16px;
    /* Separation from other filters */
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.soma-school-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    color: #000 !important;
    /* Ensure text stays black */
}

/* Sort Dropdown Cleaning */
.sort-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.sort-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFF;
}


/* ... (omitted styles) ... */

/* 📚 CONTENT ROWS & CARDS */
.main-content {
    background: var(--bg-black);
    padding: 0 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.content-row {
    position: relative;
    margin-bottom: 24px;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    padding-top: 48px;
}

.row-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: -0.01em;
}

.row-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.row-link:hover {
    color: var(--neon-green);
    text-decoration: underline;
}

/* CAROUSEL */
.carousel-wrapper {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    padding-top: 20px;
    /* Room for pop-up hover */
    scrollbar-width: thin;
    scrollbar-color: var(--neon-green) rgba(42, 42, 42, 0.5);
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: rgba(42, 42, 42, 0.5);
}

.carousel-track::-webkit-scrollbar-thumb {
    background-color: var(--neon-green);
    border-radius: 3px;
}

/* 🎴 NETFLIX CARD STYLE */
.blog-card {
    min-width: 360px;
    width: 360px;
    /* Fixed width per prompt */
    background: var(--bg-card);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* No visual overflow hidden on container to allow scale */
}

.card-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--deep-purple);
    color: var(--neon-green);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.card-time {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFF;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-bookmark {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(204, 255, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 3;
    color: #FFF;
}

.card-body {
    padding: 20px;
    min-height: 180px;
    background: var(--bg-card);
    border-radius: 0 0 8px 8px;
    transition: background 0.4s;
}

.card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    align-items: center;
}

.meta-author-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #444;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-tag {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(42, 42, 42, 0.6);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
}

/* Card Hover State */
.blog-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 20;
    box-shadow: 0 16px 48px rgba(204, 255, 0, 0.2);
    /* Border on container handled by outline or pseudo to avoid layout shift, 
       but user asked for border. Let's use box-shadow ring for border effect */
}

.blog-card:hover .card-img {
    transform: scale(1.1);
}

.blog-card:hover .card-body {
    background: var(--bg-card-hover);
}

.blog-card:hover .card-title {
    color: var(--neon-green);
}

.blog-card:hover .card-tag {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.blog-card:hover .card-bookmark {
    opacity: 1;
}

.blog-card:hover .card-bookmark:hover {
    background: var(--neon-green);
    color: #000;
}

/* 📣 PRODUCT AD CARD */
.ad-row {
    margin: 60px 0;
}

.ad-cortex-card {
    height: 280px;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--neon-purple) 100%);
    border-radius: 12px;
    padding: 48px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ad-cortex-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.ad-content {
    z-index: 2;
    max-width: 60%;
}

.ad-badge {
    background: rgba(204, 255, 0, 0.2);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.ad-headline {
    font-size: 36px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ad-subhead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 500px;
}

.btn-ad-primary {
    background: var(--neon-green);
    color: #000;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-ad-primary:hover {
    background: var(--neon-green-hover);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(204, 255, 0, 0.5);
}

.ad-visual {
    position: absolute;
    right: -40px;
    bottom: -20px;
    max-height: 320px;
    /* Bit larger than prompt to fill */
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Nav Arrows (External) */
.carousel-nav-btn {
    position: absolute;
    top: 55%;
    /* Align with card centerish */
    transform: translateY(-50%);
    width: 56px;
    height: 200px;
    /* Match Thumbnail height approx or row height */
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 30;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-row:hover .carousel-nav-btn {
    opacity: 1;
}

.carousel-nav-btn.prev {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.carousel-nav-btn.next {
    right: 0;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.carousel-nav-btn:hover {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .blog-nav {
        padding: 0 16px;
    }

    .nav-search-container {
        display: none;
    }

    .nav-breadcrumb {
        font-size: 16px;
    }

    .blog-hero {
        height: 400px;
        margin-top: 70px;
    }

    .hero-content {
        left: 16px;
        bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .main-content {
        padding: 0 16px 60px;
    }

    .ad-cortex-card {
        flex-direction: column;
        height: auto;
        padding: 32px;
        align-items: flex-start;
    }

    .ad-visual {
        display: none;
    }

    .ad-content {
        max-width: 100%;
    }
}

/* 📄 ARTICLE PAGE SPECIFIC STYLES */

.article-hero {
    margin-top: 70px;
    height: 500px;
    width: 100%;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1535378437327-10eff30fb29f?auto=format&fit=crop&w=1920');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.article-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-weight: 500;
}

.article-title {
    font-size: 56px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.1;
    margin: 20px 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    max-width: 900px;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
}

.social-share {
    position: absolute;
    top: 60px;
    right: 60px;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.2s;
}

.share-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neon-green);
}

/* LAYOUT CONTAINER */
.article-container-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 60px 24px;
    gap: 60px;
}

/* SIDEBAR */
.article-sidebar {
    width: 280px;
    position: sticky;
    top: 100px;
    height: fit-content;
    background: #141414;
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 12px;
    padding: 24px;
    flex-shrink: 0;
}

.toc-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: block;
}

.toc-list a:hover {
    color: var(--neon-green);
    padding-left: 4px;
}

.progress-container {
    height: 3px;
    background: rgba(204, 255, 0, 0.2);
    border-radius: 2px;
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--neon-green);
    width: 0%;
    transition: width 0.1s;
}

/* CONTENT TYPOGRAPHY */
.article-content {
    flex: 1;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.article-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--neon-green);
    margin: 48px 0 24px;
}

.article-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #FFF;
    margin: 36px 0 20px;
}

.article-content p {
    margin-bottom: 24px;
}

.lead-paragraph {
    font-size: 20px;
    font-weight: 400;
    color: #FFF;
    border-left: 2px solid var(--neon-green);
    padding-left: 24px;
}

.article-content a {
    color: var(--neon-green);
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid var(--deep-purple);
    margin: 32px 0;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(115, 0, 178, 0.1);
    padding: 24px 24px 24px 32px;
    border-radius: 0 8px 8px 0;
}

/* Code Blocks */
.code-block {
    background: #141414;
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    overflow-x: auto;
}

.article-content code {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    color: #eaeaea;
}

/* CTA Box */
.cta-box-article {
    background: linear-gradient(135deg, var(--deep-purple), var(--neon-purple));
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-headline {
    font-size: 24px;
    color: #FFF;
    margin: 0 0 12px 0 !important;
}

.cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px !important;
}

.btn-cta-article {
    background: var(--neon-green);
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-cta-article:hover {
    transform: scale(1.05);
}

.article-image {
    width: 100%;
    border-radius: 8px;
    margin: 40px 0 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.image-caption {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
    margin-top: 0 !important;
}

@media (max-width: 1024px) {
    .article-sidebar {
        display: none;
        /* Hide sidebar on small screens or move to bottom if needed */
    }

    .article-container-wrapper {
        display: block;
        padding: 40px 20px;
    }

    .article-title {
        font-size: 36px;
    }
}