/* Dedicated styles for Editorial Guide */
        html {
            scroll-behavior: smooth;
        }

        .guide-container {
            max-width: 1180px;
            margin: 0 auto;
        }

        .guide-nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 28px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border-card);
            flex-wrap: wrap;
        }

        .btn-live-tracker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #0284c7, #0369a1);
            color: #ffffff;
            font-weight: 700;
            font-size: 14px;
            padding: 10px 20px;
            border-radius: 9999px;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
            transition: all 0.2s ease-in-out;
        }

        .btn-live-tracker:hover {
            background: linear-gradient(135deg, #0369a1, #075985);
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(2, 132, 199, 0.35);
        }

        .guide-tracker-column {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }

        .guide-tracker-column .header-disclosure {
            justify-content: flex-end;
            text-align: right;
        }

        @media (max-width: 640px) {
            .guide-tracker-column {
                align-items: flex-start;
                width: 100%;
            }
            .guide-tracker-column .header-disclosure {
                justify-content: flex-start;
                text-align: left;
            }
        }

        .guide-hero {
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            border: 1px solid #bae6fd;
            border-radius: 16px;
            padding: 36px 32px;
            margin-bottom: 36px;
            box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
            position: relative;
            overflow: hidden;
        }

        .guide-hero::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .guide-badge-row {
            display: flex;
            gap: 8px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .guide-badge {
            font-size: 11.5px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 4px 10px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .badge-blue { background: #e0f2fe; color: #0369a1; border: 1px solid #7dd3fc; }
        .badge-emerald { background: #ecfdf5; color: #047857; border: 1px solid #6ee7b7; }
        .badge-amber { background: #fffbeb; color: #b45309; border: 1px solid #fcd34d; }
        .badge-purple { background: #f3e8ff; color: #7e22ce; border: 1px solid #d8b4fe; }

        .guide-hero h1 {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.25;
            color: var(--text-main);
            margin-bottom: 16px;
            letter-spacing: -0.6px;
        }

        .guide-hero p.lead {
            font-size: 16.5px;
            line-height: 1.65;
            color: var(--text-muted);
            max-width: 950px;
        }

        /* Content Sections */
        .guide-section {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: 14px;
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            scroll-margin-top: 24px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 1px solid #f1f5f9;
            flex-wrap: wrap;
        }

        .section-title-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .icon-dell { background: #e0f2fe; color: #0284c7; }
        .icon-dfs { background: #fef3c7; color: #d97706; }
        .icon-lenovo { background: #fee2e2; color: #dc2626; }
        .icon-microsoft { background: #eff6ff; color: #0078d4; }
        .icon-bestbuy { background: #dbeafe; color: #0046be; }
        .icon-woot { background: #dcfce7; color: #15803d; }
        .icon-matrix { background: #ecfdf5; color: #059669; }
        .icon-tips { background: #ede9fe; color: #7c3aed; }

        .section-title-group h2 {
            font-size: 22px;
            font-weight: 800;
            color: #0f172a;
            letter-spacing: -0.3px;
        }

        .store-pill-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12.5px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.15s ease;
        }

        .store-btn-dell {
            background: #0284c7;
            color: #ffffff;
        }
        .store-btn-dell:hover {
            background: #0369a1;
            transform: translateY(-1px);
        }

        .store-btn-dfs {
            background: #d97706;
            color: #ffffff;
        }
        .store-btn-dfs:hover {
            background: #b45309;
            transform: translateY(-1px);
        }

        .store-btn-lenovo {
            background: #dc2626;
            color: #ffffff;
        }
        .store-btn-lenovo:hover {
            background: #b91c1c;
            transform: translateY(-1px);
        }

        .store-btn-ebay {
            background: #0053a0;
            color: #ffffff;
        }
        .store-btn-ebay:hover {
            background: #003d75;
            transform: translateY(-1px);
        }

        .store-btn-microsoft {
            background: #0078d4;
            color: #ffffff;
        }
        .store-btn-microsoft:hover {
            background: #106ebe;
            transform: translateY(-1px);
        }

        .store-btn-bestbuy {
            background: #0046be;
            color: #ffffff;
        }
        .store-btn-bestbuy:hover {
            background: #00379b;
            transform: translateY(-1px);
        }

        .store-btn-woot {
            background: #15803d;
            color: #ffffff;
        }
        .store-btn-woot:hover {
            background: #166534;
            transform: translateY(-1px);
        }

        .tier-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
            margin-top: 16px;
            margin-bottom: 20px;
        }

        .tier-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            transition: border-color 0.2s;
            min-width: 0;
            box-sizing: border-box;
        }

        .tier-card:hover {
            border-color: #cbd5e1;
        }

        .tier-card-header {
            margin-bottom: 14px;
        }

        .tier-card-title {
            font-size: 16px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tier-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 14px;
        }

        .spec-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 13.5px;
            border-top: 1px solid #e2e8f0;
            padding-top: 12px;
        }

        .spec-list li {
            padding: 6px 0;
            position: relative;
            padding-left: 16px;
            color: #334155;
            line-height: 1.55;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .spec-list li strong {
            color: #0f172a;
            font-weight: 700;
        }

        .spec-list li strong:first-of-type {
            margin-right: 4px;
        }

        .spec-bullet {
            position: absolute;
            left: 0;
            top: 6px;
            color: #0284c7;
            font-weight: 900;
        }

        /* Comparison Table */
        .guide-table-wrap {
            overflow: visible;
            max-width: 100%;
            border: 1px solid var(--border-card);
            border-radius: 12px;
            margin: 20px 0;
            background: #ffffff;
        }

        .guide-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            text-align: left;
            font-size: 13px;
        }

        .guide-table thead {
            background: #f8fafc;
        }

        .guide-table thead th {
            position: sticky;
            top: 0;
            z-index: 10;
            background: #f8fafc;
            padding: 13px 16px;
            font-weight: 800;
            color: #0f172a;
            white-space: nowrap;
            border-bottom: 2px solid #cbd5e1;
            box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.07);
            transition: background 0.15s ease;
        }

        .guide-table thead th:hover {
            background: #f1f5f9;
        }

        .guide-table thead tr th:first-child {
            border-top-left-radius: 11px;
        }

        .guide-table thead tr th:last-child {
            border-top-right-radius: 11px;
        }

        .guide-table th:first-child,
        .guide-table td:first-child {
            position: sticky;
            left: 0;
            z-index: 2;
            background: #ffffff;
            border-right: 1px solid #cbd5e1;
            box-shadow: 3px 0 6px -2px rgba(0, 0, 0, 0.06);
            min-width: 210px;
        }

        .guide-table thead th:first-child {
            position: sticky;
            left: 0;
            top: 0;
            z-index: 12;
            background: #f1f5f9;
            box-shadow: 3px 4px 6px -2px rgba(0, 0, 0, 0.08);
            transition: background 0.15s ease;
        }

        .guide-table thead th:first-child:hover {
            background: #e2e8f0;
        }

        .guide-table tbody tr:last-child td:first-child {
            border-bottom-left-radius: 11px;
        }

        .guide-table tbody tr:last-child td:last-child {
            border-bottom-right-radius: 11px;
        }

        .guide-table td {
            padding: 13px 16px;
            border-bottom: 1px solid #e2e8f0;
            color: #334155;
            vertical-align: middle;
            line-height: 1.5;
        }

        .guide-table tr:hover td {
            background: #f8fafc;
        }

        .guide-table tr:hover td:first-child {
            background: #f8fafc;
        }

        .matrix-channel-link {
            text-decoration: none;
            display: inline-block;
            color: inherit;
            transition: all 0.15s ease;
        }

        .matrix-channel-link:hover .matrix-channel-title,
        .matrix-channel-link:hover .matrix-card-title {
            color: #2563eb;
        }

        .matrix-channel-link:hover .matrix-channel-sub,
        .matrix-channel-link:hover .matrix-card-sub {
            color: #3b82f6;
        }

        .matrix-channel-title {
            font-weight: 800;
            font-size: 13.5px;
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.15s ease;
        }

        .matrix-channel-sub {
            font-size: 11.5px;
            color: #64748b;
            margin-top: 2px;
            display: block;
            transition: color 0.15s ease;
        }

        .matrix-link-icon {
            display: inline-block;
            vertical-align: middle;
            opacity: 0.55;
            flex-shrink: 0;
            transition: opacity 0.15s ease, transform 0.15s ease;
        }

        .matrix-channel-link:hover .matrix-link-icon {
            opacity: 1;
            transform: translate(1px, -1px);
        }

        .matrix-chip {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 6px;
            white-space: nowrap;
        }

        .chip-emerald { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
        .chip-amber { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
        .chip-blue { background: #f0f9ff; color: #0369a1; border: 1px solid #bae6fd; }
        .chip-purple { background: #fdf4ff; color: #86198f; border: 1px solid #f5d0fe; }
        .chip-bestbuy { background: #eff6ff; color: #0046be; border: 1px solid #bfdbfe; }
        .chip-woot { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

        /* Mobile & Tablet Comparison Cards */
        .matrix-cards-view {
            display: none;
            flex-direction: column;
            gap: 16px;
            margin: 20px 0;
        }

        .matrix-card {
            background: #ffffff;
            border: 1px solid var(--border-card);
            border-radius: 12px;
            padding: 18px 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.2s ease;
        }

        .matrix-card:hover {
            border-color: #cbd5e1;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .matrix-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 12px;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 12px;
            gap: 10px;
            flex-wrap: wrap;
        }

        .matrix-card-brand {
            flex: 1;
            min-width: 180px;
        }

        .matrix-card-title {
            font-size: 16px;
            font-weight: 800;
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.15s ease;
        }

        .matrix-card-sub {
            font-size: 12px;
            color: #64748b;
            margin-top: 2px;
            display: block;
            transition: color 0.15s ease;
        }

        .matrix-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .matrix-spec-item {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .matrix-spec-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #64748b;
        }

        .matrix-spec-val {
            font-size: 13px;
            color: #1e293b;
            line-height: 1.45;
        }

        /* Callout Box */
        .tip-box {
            background: #fffbeb;
            border-left: 4px solid #d97706;
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
            font-size: 14px;
            line-height: 1.6;
            color: #92400e;
        }

        .tip-box strong {
            color: #78350f;
        }

        .cta-banner {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            border-radius: 14px;
            padding: 32px;
            text-align: center;
            margin-top: 36px;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
        }

        .cta-banner h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 12px;
            letter-spacing: -0.4px;
        }

        .cta-banner p {
            font-size: 15px;
            color: #94a3b8;
            max-width: 650px;
            margin: 0 auto 22px auto;
            line-height: 1.6;
        }

        .cta-banner .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0284c7;
            color: #ffffff;
            font-weight: 800;
            font-size: 15px;
            padding: 12px 26px;
            border-radius: 9999px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .cta-banner .btn-cta:hover {
            background: #0369a1;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
        }

        /* FAQ Accordion */
        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
            background: #ffffff;
        }

        .faq-question {
            padding: 16px 20px;
            font-weight: 700;
            font-size: 15px;
            color: #0f172a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background: #f8fafc;
            transition: background 0.15s;
        }

        .faq-question:hover {
            background: #f1f5f9;
        }

        .faq-answer {
            padding: 16px 20px;
            font-size: 14.5px;
            line-height: 1.65;
            color: #475569;
            border-top: 1px solid #e2e8f0;
        }

        /* Store Navigation Hub */
        .store-nav-hub {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 22px 24px;
            margin-bottom: 32px;
            box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
        }
        .store-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .store-nav-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: #0f172a;
        }
        .store-nav-title strong { font-weight: 800; letter-spacing: -0.2px; }
        .store-nav-icon { font-size: 16px; }
        .store-nav-hint { font-size: 12.5px; color: #64748b; }
        .store-nav-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 14px;
        }
        .store-nav-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 14px 16px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.2s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.02);
        }
        .store-nav-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.06);
        }
        .card-dell:hover { border-color: #7dd3fc; background: #f0f9ff; }
        .card-dfs:hover { border-color: #fcd34d; background: #fffbeb; }
        .card-lenovo:hover { border-color: #fca5a5; background: #fef2f2; }
        .card-microsoft:hover { border-color: #93c5fd; background: #eff6ff; }
        .card-bestbuy:hover { border-color: #93c5fd; background: #eff6ff; }
        .card-woot:hover { border-color: #86efac; background: #f0fdf4; }
        .store-nav-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .store-nav-badge {
            font-size: 13px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .badge-dell { color: #0369a1; }
        .badge-dfs { color: #b45309; }
        .badge-lenovo { color: #b91c1c; }
        .badge-microsoft { color: #0078d4; }
        .badge-bestbuy { color: #0046be; }
        .card-bestbuy-ca:hover { border-color: #fca5a5; background: #fff5f5; }
        .badge-bestbuy-ca { color: #c0392b; }
        .badge-woot { color: #15803d; }
        .nav-arrow {
            color: #94a3b8;
            transition: transform 0.2s ease, color 0.2s ease;
            flex-shrink: 0;
        }
        .store-nav-card:hover .nav-arrow {
            transform: translateX(3px);
            color: #0f172a;
        }
        .store-nav-desc {
            font-size: 12.5px;
            font-weight: 600;
            color: #334155;
            line-height: 1.45;
            margin-bottom: 8px;
        }
        .store-nav-meta {
            font-size: 11.5px;
            color: #64748b;
            line-height: 1.4;
        }
        .store-nav-footer {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid #f1f5f9;
            flex-wrap: wrap;
        }
        .store-nav-sublabel {
            font-size: 12px;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .store-nav-sublinks {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .store-nav-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #f1f5f9;
            color: #334155;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.15s ease;
            border: 1px solid transparent;
        }
        .store-nav-pill:hover {
            background: #e2e8f0;
            color: #0f172a;
            border-color: #cbd5e1;
        }

        @media (max-width: 900px) {
            .guide-table-wrap {
                display: none !important;
            }
            .matrix-cards-view {
                display: flex !important;
            }
        }

        @media (max-width: 540px) {
            .matrix-card-grid {
                grid-template-columns: 1fr !important;
                gap: 10px;
            }
        }

        @media (max-width: 768px) {
            .guide-hero h1 { font-size: 24px; }
            .guide-hero { padding: 22px 16px; }
            .guide-section { padding: 20px 14px; }
            .section-title-group h2 { font-size: 18px; }
            .tier-cards-grid { grid-template-columns: 1fr !important; gap: 14px; }
            .tier-card { padding: 16px 14px; min-width: 0; }
            .store-pill-links { width: 100%; }
            .store-btn { flex: 1 1 calc(50% - 8px); justify-content: center; text-align: center; }
            .store-nav-hub { padding: 18px 16px; }
        }

        @media (max-width: 480px) {
            .guide-hero h1 { font-size: 21px; }
            .guide-hero p.lead { font-size: 14.5px; }
            .store-btn { flex: 1 1 100%; }
            .btn-live-tracker { width: 100%; justify-content: center; font-size: 13px; padding: 8px 14px; }
            .store-nav-hub { padding: 14px 12px; }
            .store-nav-grid { grid-template-columns: 1fr; }
        }

        [data-theme="dark"] .guide-hero {
            background: linear-gradient(135deg, #151e2e 0%, #1e293b 100%) !important;
            border-color: var(--border-card) !important;
        }
        [data-theme="dark"] .guide-hero h1 { color: #ffffff !important; }
        [data-theme="dark"] .guide-hero p.lead { color: #cbd5e1 !important; }
        [data-theme="dark"] .guide-section p,
        [data-theme="dark"] .guide-section li { color: #cbd5e1 !important; }
        [data-theme="dark"] .section-title-group h2 { color: #ffffff !important; }

/* Spoke Page Navigation & Breadcrumbs */
.guide-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.guide-breadcrumb a {
    color: #0284c7;
    text-decoration: none;
    transition: color 0.15s;
}
.guide-breadcrumb a:hover {
    color: #0369a1;
    text-decoration: underline;
}
.guide-breadcrumb .sep {
    color: var(--border-card);
}
.guide-breadcrumb .current {
    color: var(--text-main);
}

/* Back to Central Hub Banner */
.hub-back-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 18px 24px;
    margin: 32px 0;
    flex-wrap: wrap;
}
[data-theme="dark"] .hub-back-banner {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%) !important;
    border-color: #059669 !important;
}
.hub-back-banner-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 800;
    color: #166534;
}
[data-theme="dark"] .hub-back-banner-text h4 {
    color: #a7f3d0 !important;
}
.hub-back-banner-text p {
    margin: 0;
    font-size: 13.5px;
    color: #15803d;
}
[data-theme="dark"] .hub-back-banner-text p {
    color: #d1fae5 !important;
}
.btn-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #15803d;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}
.btn-hub-link:hover {
    background: #166534;
}
[data-theme="dark"] .btn-hub-link {
    background: #10b981;
    color: #064e3b !important;
}
[data-theme="dark"] .btn-hub-link:hover {
    background: #34d399;
}

/* Verified Sources & References Dual-Tier Grid */
.sources-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 14px;
}

.source-tier-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

[data-theme="dark"] .source-tier-card {
    background: var(--bg-card) !important;
    border-color: var(--border-card) !important;
}

.source-tier-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

[data-theme="dark"] .source-tier-header {
    border-bottom-color: var(--border-card) !important;
}

.source-tier-badge-row {
    margin-bottom: 10px;
}

.source-tier-header h3 {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
}

.source-tier-header p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dim);
    margin: 0;
}

.source-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.source-link-item a {
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    padding: 12px 14px;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

[data-theme="dark"] .source-link-item a {
    background: rgba(15, 23, 42, 0.4) !important;
    border-color: var(--border-card) !important;
}

.source-link-item a:hover {
    background: #f0f9ff;
    border-color: #7dd3fc;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(2, 132, 199, 0.08);
}

[data-theme="dark"] .source-link-item a:hover {
    background: rgba(2, 132, 199, 0.12) !important;
    border-color: #0284c7 !important;
}

.source-link-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 4px;
}

[data-theme="dark"] .source-link-title {
    color: #38bdf8 !important;
}

.source-link-title .ext-icon {
    font-size: 13px;
    color: var(--text-dim);
    transition: transform 0.15s ease;
}

.source-link-item a:hover .ext-icon {
    transform: translate(2px, -2px);
    color: #0284c7;
}

.source-link-desc {
    display: block;
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--text-muted);
}

@media (max-width: 860px) {
    .sources-dual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

