/* Article-specific styles */
        .article-header {
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
            padding: 3rem 0 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .article-breadcrumb {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.2rem;
        }
        .article-breadcrumb a { color: #fff; text-decoration: none; }
        .article-breadcrumb a:hover { text-decoration: underline; }
        .article-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.85rem;
            border-radius: 20px;
            margin-bottom: 1rem;
        }
        .article-title {
            font-size: clamp(1.7rem, 4vw, 2.6rem);
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 1rem;
        }
        .article-meta-row {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.88rem;
        }
        .article-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta-row svg { width: 16px; height: 16px; fill: currentColor; }

        /* Hero image */
        .article-hero-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(29, 79, 143, 0.15);
        }

        /* Article body layout */
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            align-items: start;
            padding: 2.5rem 0 4rem;
        }
        @media (max-width: 900px) {
            .article-layout { grid-template-columns: 1fr; }
        }

        /* Prose */
        .article-body h2 {
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--black);
            margin: 2.2rem 0 0.8rem;
        }
        .article-body h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--black);
            margin: 1.6rem 0 0.6rem;
        }
        .article-body p {
            color: var(--text-dark);
            line-height: 1.85;
            margin-bottom: 1.1rem;
        }
        .article-body ul, .article-body ol {
            color: var(--text-dark);
            line-height: 1.85;
            padding-left: 1.4rem;
            margin-bottom: 1.1rem;
        }
        .article-body li { margin-bottom: 0.45rem; }

        /* Key Takeaways box */
        .takeaways-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--primary-blue);
            border-radius: 10px;
            padding: 1.4rem 1.6rem;
            margin: 1.5rem 0 2rem;
        }
        .takeaways-box h3 {
            color: var(--primary-blue) !important;
            margin-top: 0 !important;
            margin-bottom: 0.8rem !important;
            font-size: 1rem !important;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            display: flex;
            align-items: center;
        }
        .takeaways-box h3 svg {
            width: 18px;
            height: 18px;
            margin-right: 6px;
            fill: currentColor;
        }
        .takeaways-box ul { margin-bottom: 0; color: var(--text-dark); }

        /* Specs table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 2rem;
            font-size: 0.93rem;
            background: #ffffff;
        }
        .specs-table th, .specs-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-dark);
        }
        .specs-table th {
            background: #ffffff;
            color: var(--black);
            font-weight: 700;
            width: 38%;
        }
        .specs-table tr:hover td { background: var(--bg-gray); }

        /* Comparison table */
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 2rem;
            font-size: 0.9rem;
            background: #ffffff;
        }
        .compare-table th {
            background: var(--primary-blue);
            color: #fff;
            padding: 0.75rem 1rem;
            font-weight: 700;
            text-align: left;
        }
        .compare-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-dark);
        }
        .compare-table tr:nth-child(even) td { background: #ffffff; }
        .compare-table tr:hover td { background: var(--bg-gray); }

        .article-body .table-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 1.2rem 0 2rem;
        }
        .article-body .table-wrapper .compare-table {
            min-width: 620px;
            margin: 0;
        }

        /* Pros / Cons */
        .pros-cons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin: 1.2rem 0 2rem;
        }
        @media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
        .pros-box, .cons-box {
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
        }
        .pros-box, .cons-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
        }
        .pros-box h4, .cons-box h4 {
            color: var(--primary-blue);
            margin: 0 0 0.8rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }
        .pros-box h4 svg, .cons-box h4 svg {
            width: 18px;
            height: 18px;
            margin-right: 6px;
            fill: currentColor;
        }
        .pros-box ul, .cons-box ul { padding-left: 1.2rem; margin: 0; }
        .pros-box li, .cons-box li { color: var(--text-dark); font-size: 0.9rem; margin-bottom: 0.4rem; }

        /* Rating badge */
        .verdict-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 1.6rem;
            margin: 2rem 0;
            text-align: center;
        }
        .verdict-score {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .verdict-label { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
        .verdict-title { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-top: 0.8rem; }

        /* FAQ */
        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 0.8rem;
            overflow: hidden;
            background: #ffffff;
        }
        .faq-question {
            background: #ffffff;
            padding: 1rem 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
            color: var(--black);
            font-size: 0.95rem;
            transition: background 0.2s;
            border: none;
            width: 100%;
            text-align: left;
        }
        .faq-question > span { flex: 0 0 auto; }
        .faq-item .faq-heading { margin: 0; }
        .faq-question:hover { background: var(--bg-gray); }
        .faq-answer {
            display: none;
            padding: 1rem 1.2rem;
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 0.93rem;
            border-top: 1px solid var(--border-color);
        }
        .faq-arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--primary-blue); }
        .faq-item.open .faq-arrow { transform: rotate(180deg); }
        .faq-item.open .faq-answer { display: block; }

        /* Sidebar sticky behavior */
        .article-sidebar {
            position: -webkit-sticky;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        
        .search-widget {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
            margin-bottom: 1.5rem;
        }
        .search-widget h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary-blue); margin: 0 0 0.9rem; }
        .search-form { display: flex; gap: 5px; }
        .search-form input {
            flex: 1;
            padding: 0.6rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.9rem;
            outline: none;
        }
        .search-form input:focus { border-color: var(--primary-blue); }
        .search-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 0 0.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .search-form button:hover { background: var(--primary-blue-hover); }
        .search-form button svg { width: 18px; height: 18px; fill: currentColor; }

        .buy-btn {
            display: block;
            background: var(--primary-blue);
            color: #fff;
            text-align: center;
            padding: 0.85rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.93rem;
            transition: background 0.2s, transform 0.15s;
            margin-top: 1rem;
        }
        .buy-btn:hover { 
            background: var(--primary-blue-hover); 
            color: #ffffff !important; 
            transform: translateY(-1px); 
        }
    

        /* Site-wide table header color normalization */
        table thead th,
        .article-body table thead th,
        .article-body .specs-table thead th,
        .article-body .compare-table thead th {
            background: var(--primary-blue) !important;
            color: #ffffff !important;
            font-weight: 700;
            width: auto !important;
        }
        table thead th *,
        .article-body table thead th * {
            color: #ffffff !important;
        }
