/* ============================================================================
   Blog Styles — Light theme with teal accent
   Background: white | Text: dark/rgba | Accent: #22d3ee (cyan)
   ============================================================================ */

/* Blog Main Container */
.blog-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-4xl);
    min-height: 60vh;
    padding-top: 70px;
}

/* ── Blog List Page ────────────────────────────────────────────── */

.blog-list-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-list h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}

.blog-list-subtitle {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
}

.blog-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1.5rem;
}

.blog-card-placeholder-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    opacity: 0.85;
}

.blog-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 2rem;
    overflow: hidden;
}
.badge-left {
    background: #f59e0b;
    color: #fff;
    padding: 0.2rem 0.45rem 0.2rem 0.55rem;
}
.badge-right {
    background: #3b82f6;
    color: #fff;
    padding: 0.2rem 0.55rem 0.2rem 0.45rem;
}

.blog-card-content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta-row {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.blog-card-district {
    font-size: 0.7rem;
    font-weight: 600;
    color: #f59e0b;
    background: #f59e0b12;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
}

.blog-card-type {
    font-size: 0.7rem;
    font-weight: 600;
    color: #3b82f6;
    background: #3b82f612;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.blog-card-summary {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 auto;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.blog-card-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.blog-card-read {
    font-size: 0.78rem;
    font-weight: 600;
    color: #3b82f6;
}
.blog-card:hover .blog-card-read {
    color: #2563eb;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.tag-link {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: lowercase;
    text-decoration: none;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
    cursor: pointer;
}

.tag-link:hover {
    background: #22d3ee;
    color: #0f172a;
}

.blog-empty {
    text-align: center;
    color: rgba(0,0,0,0.4);
    padding: 4rem 0;
    font-size: 1.1rem;
}

.blog-empty a {
    color: #22d3ee;
    text-decoration: none;
}

.blog-empty a:hover {
    text-decoration: underline;
}

/* ── Section Titles ──────────────────────────────────────────── */

.digest-section {
    margin-bottom: 2.5rem;
}

.digest-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
}

/* ── Featured Card ──────────────────────────────────────────── */

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1), 0 6px 12px rgba(0,0,0,0.05);
}

.featured-card-image {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    min-height: 280px;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0.5rem 0 0.75rem;
}

.featured-card-summary {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 auto;
}

@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-card-image {
        min-height: 200px;
        aspect-ratio: 16 / 9;
    }
    .featured-card-body {
        padding: 1.25rem;
    }
    .featured-card-title {
        font-size: 1.35rem;
    }
}

/* ── Filter Bar ──────────────────────────────────────────────── */

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: #1e293b;
    background: rgba(0,0,0,0.06);
    cursor: pointer;
    min-width: 160px;
}

.filter-select:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.15);
}

.filter-select option {
    color: var(--gray-900);
    background: var(--white);
}

.blog-filter-indicator {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}

.filter-clear {
    color: #22d3ee;
    text-decoration: none;
    margin-left: 0.5rem;
    font-weight: 500;
}

.filter-clear:hover {
    text-decoration: underline;
}

/* ── Pagination ──────────────────────────────────────────────── */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-size: 0.875rem;
    color: rgba(0,0,0,0.6);
    text-decoration: none;
    transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.pagination-link:hover:not(.pagination-disabled):not(.pagination-current) {
    border-color: #22d3ee;
    color: #22d3ee;
}

.pagination-current {
    background: #22d3ee;
    border-color: #22d3ee;
    color: #0f172a;
    font-weight: 600;
}

.pagination-disabled {
    color: rgba(0,0,0,0.2);
    cursor: default;
}

.pagination-ellipsis {
    color: rgba(0,0,0,0.4);
    padding: 0 0.25rem;
}

/* ── Article Detail Page ───────────────────────────────────────── */

.blog-article {
    max-width: 1060px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.article-series {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.series-left {
    background: #f59e0b;
    color: #fff;
    padding: 0.3rem 0.65rem 0.3rem 0.85rem;
}
.series-right {
    background: #3b82f6;
    color: #fff;
    padding: 0.3rem 0.85rem 0.3rem 0.65rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(0,0,0,0.4);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.article-tags .tag-link {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: lowercase;
    text-decoration: none;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.article-tags .tag-link:hover {
    background: #22d3ee;
    color: #0f172a;
}

/* AI Disclosure — amber disclaimer banner */
.ai-disclosure {
    font-size: 0.85rem;
    color: #b45309;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    margin: 0;
    line-height: 1.4;
}

/* ── Tier List Scorecard ──────────────────────────────────────── */

.tier-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.tier-card-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tier-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.tier-card-subtitle {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
}

.tier-rows {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tier-row {
    display: grid;
    grid-template-columns: 90px 36px 1fr;
    align-items: center;
    gap: 0.75rem;
}

.tier-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
}

.tier-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.tier-s { background: rgba(250, 204, 21, 0.15); color: #facc15; border: 1px solid rgba(250, 204, 21, 0.3); }
.tier-a { background: rgba(34, 197, 94, 0.12);  color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.25); }
.tier-b { background: rgba(34, 211, 238, 0.1);  color: #22d3ee; border: 1px solid rgba(34, 211, 238, 0.2); }
.tier-c { background: rgba(251, 146, 60, 0.12); color: #fb923c; border: 1px solid rgba(251, 146, 60, 0.25); }
.tier-d { background: rgba(239, 68, 68, 0.12);  color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.25); }

.tier-reason {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .tier-row {
        grid-template-columns: 80px 32px 1fr;
        gap: 0.5rem;
    }
    .tier-badge {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* ── Project Overview Bar ─────────────────────────────────────── */

.project-overview {
    margin-bottom: 1.5rem;
}

.project-summary {
    font-size: 0.95rem;
    line-height: var(--leading-normal);
    color: rgba(0,0,0,0.6);
    margin: 0 0 1rem;
}

.project-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.project-overview .project-sources {
    margin-top: 0.75rem;
}

.project-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
    color: #1e293b;
}

.project-fact-label {
    font-weight: 600;
    color: rgba(0,0,0,0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.project-sources {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.source-bar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    white-space: nowrap;
}

.source-bar-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.source-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: rgba(0,0,0,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--duration) var(--ease);
}

.source-bar-link:hover {
    color: #22d3ee;
}

.source-bar-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.source-bar-avatar-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

/* Two-column layout: body + TOC sidebar */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 2.5rem;
    align-items: start;
}

/* ── Sticky Sidebar TOC ───────────────────────────────────────── */

.article-toc {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.toc-details {
    border: none;
}

.toc-details summary {
    cursor: default;
    list-style: none;
}

.toc-details summary::-webkit-details-marker {
    display: none;
}

.toc-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: rgba(0,0,0,0.4);
    margin-bottom: 0.75rem;
}

.toc-nav {
    border-left: 2px solid rgba(0,0,0,0.1);
    padding-left: 1rem;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-item {
    margin-bottom: 0.3rem;
}

.toc-level-3 {
    padding-left: 0.75rem;
}

.toc-link {
    text-decoration: none;
    color: rgba(0,0,0,0.4);
    font-size: 0.85rem;
    line-height: 1.5;
    transition: color var(--duration) var(--ease);
    display: block;
}

.toc-link:hover {
    color: #1e293b;
}

.toc-link.active {
    color: #22d3ee;
    font-weight: 600;
}

/* ── WhatsApp CTA ──────────────────────────────────────────────── */

.article-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 2.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.article-cta h3 {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0 0 0.5rem;
    color: #1e293b;
    letter-spacing: var(--tracking-tight);
}

.article-cta p {
    color: rgba(0,0,0,0.6);
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
}

.cta-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--duration) var(--ease);
}

.cta-whatsapp:hover {
    background: #1da851;
}

/* ── Source Attribution ─────────────────────────────────────────── */

.article-sources {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.article-sources h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.sources-intro {
    color: rgba(0,0,0,0.4);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

.sources-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.source-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.source-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.15);
    color: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.source-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.source-video-link {
    color: #22d3ee;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.source-video-link:hover {
    text-decoration: underline;
}

.source-channel {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.4);
}

/* ── Related Articles ──────────────────────────────────────────── */

.related-articles {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.related-articles h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #1e293b;
    margin: 0 0 1rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* ── Article Disclaimer ───────────────────────────────────────── */
.article-disclaimer {
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}
.article-disclaimer strong {
    color: #374151;
}

/* ── RoboProp AI Verdict ──────────────────────────────────────── */
.roboprop-ai-verdict {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.roboprop-ai-verdict .section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #07cdeb;
    margin-bottom: 1rem;
}
.ai-verdict-card {
    background: linear-gradient(135deg, #f0fdff 0%, #f7fdff 100%);
    border: 1px solid #07cdeb25;
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
}
.roboprop-ai-verdict .reviewer-col-content {
    background: #fff;
    border: 1px solid #07cdeb25;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.5rem 1.5rem;
    margin-top: 0;
}
.ai-verdict-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}
.ai-verdict-score-ring {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.ai-score-svg {
    width: 56px;
    height: 56px;
}
.ai-score-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #07cdeb;
}
.ai-verdict-meta {
    flex: 1;
}
.ai-verdict-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #07cdeb;
    margin-bottom: 0.3rem;
}
.ai-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #07cdeb;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
}
.ai-verdict-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}
.ai-verdict-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #475569;
    margin: 0.75rem 0 0;
}
.ai-verdict-target {
    font-size: 0.84rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0.75rem 0 0;
}

/* ── Article Body (Markdown Content) ───────────────────────────── */

.article-body {
    line-height: var(--leading-loose);
    color: rgba(0,0,0,0.6);
}

.article-body h1 {
    font-size: 1.75rem;
    font-weight: 300;
    color: #1e293b;
    letter-spacing: var(--tracking-tight);
    margin: 2rem 0 1rem;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1e293b;
    letter-spacing: var(--tracking-tight);
    margin: 1.75rem 0 0.75rem;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(0,0,0,0.85);
    margin: 1.5rem 0 0.5rem;
}

.article-body h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(0,0,0,0.85);
    margin: 1.25rem 0 0.5rem;
}

.article-body p {
    margin: 0 0 1.25rem;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.4rem;
}

.article-body strong {
    color: #1e293b;
    font-weight: 600;
}

/* Blockquotes — reviewer commentary */
.article-body blockquote {
    margin: 1.25rem 0;
    padding: 0.85rem 1.25rem;
    border-left: 3px solid #22d3ee;
    background: #ffffff;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: rgba(0,0,0,0.85);
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

/* Reviewer attribution badge */
.quote-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.quote-badge-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.65rem;
    color: #0f172a;
    flex-shrink: 0;
}

.quote-badge-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(0,0,0,0.4);
    font-style: normal;
}

/* Code blocks */
.article-body pre {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.article-body code {
    font-family: 'SF Mono', 'Fira Code', 'Fira Mono', Menlo, Consolas, monospace;
    font-size: 0.875em;
}

.article-body :not(pre) > code {
    background: rgba(0,0,0,0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    color: #22d3ee;
}

/* Tables */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.article-body th {
    background: rgba(0,0,0,0.06);
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.article-body td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.article-body tr:nth-child(even) {
    background: #ffffff;
}

/* Images */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

/* ── Launch Detail Sections ───────────────────────────────────── */

.launch-detail-section {
    margin-bottom: 1.5rem;
}

.site-plan-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.1);
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.facility-tag {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
}

/* Horizontal rule */
.article-body hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* ── Sidebar Section Nav ─────────────────────────────────────── */

.toc-section {
    margin-bottom: 0.25rem;
}

.toc-section-link {
    font-weight: 500;
    color: rgba(0,0,0,0.4);
    font-size: 0.85rem;
    cursor: pointer;
}

.toc-section.active > .toc-section-link {
    color: #22d3ee;
    font-weight: 600;
}

.toc-section-link:hover {
    color: #1e293b;
}

/* Links in article */
.article-body a {
    color: #22d3ee;
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.3);
    text-underline-offset: 2px;
}

.article-body a:hover {
    text-decoration-color: #22d3ee;
}

/* ── 404 Page ──────────────────────────────────────────────────── */

.blog-404 {
    text-align: center;
    padding: 4rem 0;
}

.blog-404 h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.blog-404 p {
    color: rgba(0,0,0,0.6);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.blog-404 .back-link {
    display: inline-block;
    color: #22d3ee;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #22d3ee;
    border-radius: var(--radius);
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.blog-404 .back-link:hover {
    background: #22d3ee;
    color: #0f172a;
}

.blog-404 .suggested-articles {
    margin-top: 3rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.blog-404 .suggested-articles h3 {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: rgba(0,0,0,0.6);
}

.blog-404 .suggested-articles ul {
    list-style: none;
    padding: 0;
}

.blog-404 .suggested-articles li {
    margin-bottom: 0.5rem;
}

.blog-404 .suggested-articles a {
    color: #22d3ee;
    text-decoration: none;
}

.blog-404 .suggested-articles a:hover {
    text-decoration: underline;
}

/* ── Tablet Responsive (TOC collapse) ──────────────────────────── */

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-toc {
        position: static;
        max-height: none;
        overflow-y: visible;
        margin-bottom: 1.5rem;
    }

    .toc-details {
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: var(--radius);
        padding: 0.75rem 1rem;
        background: #ffffff;
    }

    .toc-details summary {
        cursor: pointer;
        list-style: revert;
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(0,0,0,0.6);
    }

    .toc-details summary::-webkit-details-marker {
        display: revert;
    }

    .toc-details:not([open]) .toc-nav {
        display: none;
    }

    .toc-title {
        margin-bottom: 0;
        display: inline;
    }

    .toc-details[open] .toc-nav {
        margin-top: 0.75rem;
    }
}

/* ── Tablet Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .blog-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile Responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
    .blog-main {
        padding: 4rem 1rem 3rem;
    }

    .blog-list h1,
    .article-header h1 {
        font-size: 1.75rem;
    }

    .blog-articles {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-select {
        min-width: 100%;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .project-facts {
        gap: 0.4rem;
    }

    .project-fact {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    /* Responsive tables */
    .article-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dashboard-row { flex-direction: column; }
    .reviewer-row { flex-direction: column; }
    .timecode-grid { grid-template-columns: 1fr; }
    .pros-cons-risks-row { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* DASHBOARD MODE STYLES                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* Verdict card (compact) */
.verdict-card {
    background: rgba(34, 211, 238, 0.06);
    border-left: 3px solid #22d3ee;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    flex: 1;
}

.verdict-sources {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.verdict-sources-label {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.verdict-channel-link {
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
}
.verdict-channel-link:hover {
    text-decoration: underline;
}

.verdict-text {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(0,0,0,0.6);
    margin: 0;
    line-height: 1.5;
}

.verdict-buyer {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.4);
    margin: 0;
}

.verdict-sources {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.verdict-sources-label {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.15rem;
}

.verdict-source-link {
    font-size: 0.8rem;
    color: #4dd0e1;
    text-decoration: none;
    font-weight: 500;
}

.verdict-source-link:hover {
    text-decoration: underline;
}

.verdict-source-sep {
    color: rgba(0,0,0,0.2);
    font-size: 0.7rem;
}

.reviewer-citations {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.65rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.reviewer-citation {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}

.reviewer-citation-channel {
    font-size: 0.78rem;
    color: #4dd0e1;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.reviewer-citation-channel:hover {
    text-decoration: underline;
}

.reviewer-citation-text {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.6);
    font-style: italic;
    line-height: 1.4;
}

.verdict-stats {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.verdict-stat {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.85);
    font-weight: 500;
}

.verdict-stat-label {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 0.35rem;
}

/* Layout rows */
.dashboard-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    align-items: stretch;
}

.charts-row .psf-section {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
}

.charts-row .radar-section {
    flex: 1 1 0;
    min-width: 0;
    margin-bottom: 0;
}

.charts-row .radar-section .radar-chart-wrap {
    height: 280px;
}

/* Dashboard sections */
.dashboard-section {
    margin-bottom: 1.5rem;
}

/* RoboProp AI Verdict */
.verdict-header-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #07cdeb;
    margin-bottom: 0.75rem;
}

.verdict-dash {
    color: #07cdeb;
    font-weight: 400;
}

.verdict-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.verdict-card-inner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.verdict-score-ring {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.score-svg {
    width: 80px;
    height: 80px;
}

.score-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
}

.verdict-content {
    flex: 1;
    min-width: 0;
}

.verdict-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.verdict-badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #07cdeb;
}

.verdict-headline {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
}

.verdict-body {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    margin: 0;
}

/* Quick Summary */
.quick-summary-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(0,0,0,0.8);
    margin: 0.5rem 0 1.5rem;
}

.quick-summary-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.spec-item {
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.spec-item:nth-child(4n) {
    border-right: none;
}

.spec-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(0,0,0,0.35);
    margin-bottom: 0.35rem;
}

.spec-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
}

.quick-summary-target {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
}

.quick-summary-target-text {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.5;
    margin: 0.25rem 0 0;
}

@media (max-width: 600px) {
    .quick-summary-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .spec-item:nth-child(2n) {
        border-right: none;
    }
}

/* Section heading large */
.section-heading-lg {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
    margin: 0.25rem 0 0.5rem;
}

/* Pricing Table */
.pricing-table-wrap {
    margin: 1.25rem 0;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 3px solid #07cdeb;
}

.pricing-table thead th {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(0,0,0,0.35);
    text-align: left;
    padding: 1rem 1.25rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: rgba(0,0,0,0.7);
}

.pricing-unit-type {
    font-weight: 700;
    color: rgba(0,0,0,0.85) !important;
}

.pricing-psf {
    font-weight: 700;
    color: #07cdeb !important;
}

/* Nearby Amenities */
.nearby-amenities-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.nearby-amenity-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    background: #ffffff;
}

.nearby-amenity-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.nearby-amenity-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(0,0,0,0.85);
    line-height: 1.3;
}

.nearby-amenity-type {
    font-size: 0.72rem;
    color: rgba(0,0,0,0.4);
    margin-top: 0.2rem;
}

.nearby-amenity-dist {
    font-size: 0.72rem;
    font-weight: 600;
    color: #07cdeb;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nearby-amenities-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nearby-amenities-row {
        grid-template-columns: 1fr;
    }
}

.dashboard-section h2 {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0,0,0,0.85);
    margin: 0 0 0.5rem 0;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #07cdeb;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #07cdeb;
}

.section-subtitle {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.4);
    margin: -0.25rem 0 0.75rem 0;
}

/* Expert Review Unified Card */
.expert-review-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0 0;
}

.expert-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.expert-header-left,
.expert-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.expert-header-right {
    justify-content: flex-end;
}

/* Channel Highlights & Concerns Grid */
.channel-highlights-grid {
    display: flex;
    gap: 3rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.channel-highlights-grid > .channel-highlight-col {
    flex: 1;
    min-width: 0;
}

.channel-highlight-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channel-highlight-card {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
}

.channel-highlight-card .channel-highlight-list {
    flex: 1;
}

.channel-highlight-card .highlight-show-more {
    margin-top: auto;
    padding-top: 0.5rem;
}

.highlight-card-pro {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.highlight-card-con {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.channel-highlight-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    display: block;
}
.highlight-label-pro { color: #16a34a; }
.highlight-label-con { color: #dc2626; }

.channel-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.channel-highlight-list li {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(0,0,0,0.7);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

/* Collapse highlights to 3 items */
.channel-highlight-list.is-collapsed li:nth-child(n+4) {
    display: none;
}

.highlight-show-more {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0 0;
    color: #6b7280;
    display: block;
    text-align: right;
    width: 100%;
}
.highlight-show-more:hover {
    color: #374151;
}

.highlight-icon {
    font-weight: 700;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.highlight-plus {
    color: #22c55e;
}

.highlight-minus {
    color: #ef4444;
}

@media (max-width: 600px) {
    .channel-highlights-grid {
        flex-direction: column;
    }
}

.expert-score-divider {
    text-align: center;
    margin-top: 0;
    padding-top: 1.25rem;
}

.expert-score-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(0,0,0,0.4);
}

/* Bar avatar — channel icon above the bar at fill endpoint */
.bar-avatar {
    position: absolute;
    bottom: 100%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    background: #fff;
    z-index: 2;
    margin-bottom: 2px;
}

/* Left bar (rtl direction): avatar at the left edge of fill = css "right" in rtl */
.dualbar-bar-left .bar-avatar {
    left: 0;
    transform: translateX(-50%);
}

/* Right bar: avatar at the right edge of fill */
.dualbar-bar-right .bar-avatar {
    right: 0;
    transform: translateX(50%);
}

.bar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bar-avatar .score-indicator-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    color: #fff;
}


/* Channel Summary Columns */
.channel-summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.channel-summary-col {
    padding: 1rem 1.25rem;
    border-radius: 10px;
}

.channel-summary-col:first-child {
    background: #f59e0b0c;
    border-right: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px 0 0 10px;
}

.channel-summary-col:last-child {
    background: #3b82f60c;
    border-radius: 0 10px 10px 0;
}

.channel-summary-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.channel-summary-initials {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.channel-summary-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.channel-summary-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
}

.channel-summary-subs {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.4);
}

.channel-summary-vs {
    font-size: 0.7rem;
    font-weight: 600;
    color: #22d3ee;
    text-shadow: 0 0 12px rgba(34,211,238,0.3);
}

.channel-summary-video {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #07cdeb;
    text-decoration: none;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.channel-summary-video:hover {
    text-decoration: underline;
}

.channel-summary-play {
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

.channel-summary-text {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.65);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 600px) {
    .channel-summary-row {
        grid-template-columns: 1fr;
    }
    .channel-summary-col:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        border-radius: 10px 10px 0 0;
    }
    .channel-summary-col:last-child {
        border-radius: 0 0 10px 10px;
    }
}

/* Price Guide callout */
.price-guide-card {
    margin-bottom: 1rem;
}

.price-guide-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 0.75rem;
}

.price-guide-metric {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-guide-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0,0,0,0.4);
    font-weight: 600;
}

.price-guide-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(0,0,0,0.6);
    line-height: 1.2;
}

.price-guide-cyan {
    color: #0891b2;
}

.price-guide-insight {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.price-guide-insight-item {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.price-guide-good {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
}

.price-guide-caution {
    background: rgba(245,158,11,0.1);
    color: #b45309;
}

/* Chart legend */
.chart-legend {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: rgba(0,0,0,0.4);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-line {
    width: 14px;
    height: 0;
    border-top: 2px dashed;
    flex-shrink: 0;
}

.chart-container {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 1rem;
}

.reviewer-col-content .chart-container {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.bar-chart-wrap {
    height: 280px;
}

.line-chart-wrap {
    height: 220px;
}

/* Pros / Cons / Risks — three-column compact */
.pros-cons-risks-row {
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pcr-column {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
}

.pcr-heading {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.pcr-heading-pro { color: #22c55e; }
.pcr-heading-con { color: #ef4444; }
.pcr-heading-risk { color: #fb923c; }

.pcr-item {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    padding: 3px 0;
}

.pcr-text {
    flex: 1;
}

.pcr-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 5px;
}

.pcr-dot-pro { background: #22c55e; }
.pcr-dot-con { background: #ef4444; }
.pcr-dot-risk { background: #fb923c; }

.pcr-ticks {
    display: flex;
    flex-shrink: 0;
    gap: 1px;
    margin-top: 2px;
}

.pcr-tick {
    width: 14px;
    height: 14px;
}

.pcr-legend {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.pcr-legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6);
}

/* Reviewer row — side by side */
.reviewer-row {
    gap: 1.25rem;
    align-items: flex-start;
}

.reviewer-col {
    flex: 1 1 0;
    min-width: 0;
}

.reviewer-col-content {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
}

.reviewer-col-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 0.6rem;
    margin-top: 0.6rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.reviewer-source-link {
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 500;
}

.reviewer-source-link:hover {
    text-decoration: underline;
}

.reviewer-legend-chip {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    color: rgba(0,0,0,0.6);
}

/* Tab bar */
.tab-bar {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    font-family: inherit;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.tab-btn:hover {
    border-color: var(--tab-color, #22d3ee);
    color: var(--tab-color, #22d3ee);
}

.tab-btn.tab-active {
    background: var(--tab-color, #22d3ee);
    border-color: var(--tab-color, #22d3ee);
    color: #0f172a;
    font-weight: 600;
}

/* Tab panels */
.tab-panel {
    display: none;
}

.tab-panel-active {
    display: block;
}

/* Comp rows (replacing table in tabbed view) */
.comp-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-video-link {
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.comp-video-link a {
    font-size: 0.78rem;
    text-decoration: none;
    font-weight: 500;
}

.comp-video-link a:hover {
    text-decoration: underline;
}

/* Reviewer Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.comparison-table th {
    text-align: center;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-table th:first-child {
    text-align: left;
    color: rgba(0,0,0,0.6);
}

.comparison-table td {
    padding: 0.45rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comp-dim-label {
    text-align: left !important;
    color: rgba(0,0,0,0.6);
    font-weight: 500;
    font-size: 0.82rem;
    flex-shrink: 0;
    width: 90px;
}

.comparison-table td {
    vertical-align: top;
}

.comp-take-cell {
    text-align: left !important;
    line-height: 1.4;
}

.comp-tier-inline {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    vertical-align: middle;
    margin-right: 0.3rem;
}

.comp-take-text {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.4;
}

.comp-verdict-row td {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 0.6rem;
}

.comp-verdict-text {
    font-style: italic;
    color: rgba(0,0,0,0.6);
}

.rv-channel {
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
}

.rv-channel:hover {
    text-decoration: underline;
}

.rv-conclusion {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.6);
    font-style: italic;
    line-height: 1.4;
}

/* Timecoded Highlights (compact) */
.timecode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
}

.timecode-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius);
    padding: 0.75rem;
}

.timecode-topic {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    margin-bottom: 0.35rem;
}

.timecode-quote {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.4;
    margin: 0.25rem 0;
    font-style: italic;
}

.timecode-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.35rem;
}

.timecode-channel {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.4);
}

.timecode-link {
    font-size: 0.7rem;
    color: #22d3ee;
    text-decoration: none;
    font-weight: 500;
}

.timecode-link:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CHANNEL PROFILES — avatars with colored rings, star ratings, video embeds  */
/* ═══════════════════════════════════════════════════════════════════════════ */

.channel-profiles-row {
    display: flex;
    gap: 1.25rem;
    align-items: stretch;
}

.channel-profiles-row .channel-profile-card {
    flex: 1;
    min-width: 0;
}

.channel-vs-badge {
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    color: #22d3ee;
    text-shadow: 0 0 12px rgba(34,211,238,0.3);
    text-align: center;
    line-height: 1;
    align-self: center;
    flex-shrink: 0;
}

.channel-profile-video-title {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
    margin: 0.2rem 0 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.channel-profile-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.channel-profile-header {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

/* Colored ring avatar */
.channel-avatar-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0,0,0,0.06);
}

.channel-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.channel-avatar-letter {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.channel-avatar-silhouette {
    width: 70%;
    height: 70%;
}

.agrees-avatar-silhouette {
    width: 70%;
    height: 70%;
}

.channel-profile-info {
    flex: 1;
    min-width: 0;
}

.channel-profile-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.channel-profile-name:hover {
    text-decoration: underline;
}

/* Star ratings */
.channel-star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0.35rem;
}

.star {
    font-size: 1rem;
    line-height: 1;
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: rgba(0,0,0,0.15);
}

.rating-verdict-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.rating-verdict-card {
    border-radius: 12px;
    padding: 1.25rem;
}

.rating-verdict-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Right side: label then channel icon + name */
.verdict-right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.verdict-channel-identity {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    width: 150px;
    overflow: hidden;
}

.verdict-channel-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verdict-channel-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.verdict-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.verdict-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
}

@media (max-width: 600px) {
    .rating-verdict-cards {
        grid-template-columns: 1fr;
    }
}

.channel-verdict-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.channel-score-num {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.channel-score-ring {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.ch-score-svg {
    width: 48px;
    height: 48px;
}

.ch-score-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.channel-verdict-label {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.channel-verdict-detail {
    margin-top: 0.5rem;
}

.channel-verdict-title {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.85);
    display: block;
    margin-bottom: 0.25rem;
}

.channel-profile-summary {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* YouTube embed */
.channel-video-thumb {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.channel-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.channel-video-thumb:hover img {
    opacity: 0.8;
}

.channel-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1e293b;
    pointer-events: none;
    transition: background 0.2s;
}

.channel-video-thumb:hover .channel-video-play {
    background: rgba(255,0,0,0.85);
}

.featured-video-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}
.featured-video-row .channel-video-thumb {
    flex: 1;
    min-width: 0;
}
.featured-video-row .channel-vs-badge {
    flex-shrink: 0;
}

/* Desktop/Mobile layout toggle for expert review */
.expert-desktop-layout {
    display: block;
}

.expert-mobile-layout {
    display: none;
}

.expert-mobile-channel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expert-mobile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.expert-mobile-vs {
    text-align: center;
    padding: 0.75rem 0;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* DUAL-SIDED BAR COMPARISON CHART (Channel Ratings)                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.dualbar-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.dualbar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dualbar-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dualbar-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dualbar-label {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(0,0,0,0.75);
    margin-bottom: 0.25rem;
}

.dualbar-score {
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    min-width: 36px;
    flex-shrink: 0;
}

.dualbar-left .dualbar-score {
    text-align: left;
}

.dualbar-right .dualbar-score {
    text-align: right;
}

.dualbar-track {
    flex: 1;
    height: 24px;
    background: rgba(0,0,0,0.06);
    border-radius: 6px;
    overflow: visible;
    position: relative;
    display: flex;
    margin-top: 22px;
}

.dualbar-bar {
    flex: 1;
    height: 100%;
    overflow: visible;
    position: relative;
}

.dualbar-bar-left {
    direction: rtl;
}

.dualbar-fill {
    height: 100%;
    transition: width 0.5s ease;
    position: relative;
    border-radius: 6px;
}

/* Group wrapper for bar + inline detail */
.dualbar-group {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 0.5rem;
}

.dualbar-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dualbar-inline-detail {
    margin-top: 0.4rem;
    padding: 0 0 0.25rem;
}

/* Verdict row below ratings */
.dualbar-verdict-row {
    margin-top: 0.4rem;
}

.dualbar-verdict-text {
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
    color: #0f172a !important;
    background: #22d3ee;
    padding: 0.5rem 0.65rem;
    border-radius: 4px;
}

/* Details toggle */
.details-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.details-toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
}

.details-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-track {
    display: block;
    width: 44px;
    height: 24px;
    background: rgba(0,0,0,0.15);
    border-radius: 12px;
    position: relative;
    transition: background 0.2s ease;
}

.toggle-thumb {
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s ease;
}

.toggle-on .toggle-track {
    background: #22d3ee;
}

.toggle-on .toggle-thumb {
    left: 22px;
}

/* Rating details view */
.rating-detail-row {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.rating-detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rating-detail-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(0,0,0,0.6);
    margin-bottom: 0.4rem;
    display: block;
}

.rating-detail-takes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.rating-detail-take:first-child {
    text-align: left;
}

.rating-detail-take:last-child {
    text-align: left;
}

.rating-detail-take {
    padding: 0.25rem 0;
}

.rating-detail-channel {
    font-size: 0.72rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.rating-detail-text {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.4;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ROBO ANALYSIS — plain underline tabs + Who Agrees avatars                 */
/* ═══════════════════════════════════════════════════════════════════════════ */

.analysis-tab-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.analysis-tab-header .who-agrees-label {
    padding-bottom: 0.5rem;
    width: 70px;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.72rem;
    color: rgba(0,0,0,0.6);
    font-weight: 700;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.analysis-tab-bar {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.analysis-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(0,0,0,0.4);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-bottom: -2px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.analysis-tab:hover {
    color: rgba(0,0,0,0.6);
}

.analysis-tab.analysis-tab-active {
    color: #22d3ee;
    border-bottom-color: #22d3ee;
    font-weight: 600;
}

.analysis-panels {
    min-height: 200px;
}

/* Analysis rows with Who Agrees */
.analysis-table {
    width: 100%;
}

.analysis-table-body {
    display: flex;
    flex-direction: column;
}

.analysis-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.analysis-row:last-child {
    border-bottom: none;
}

.analysis-point {
    flex: 1;
    min-width: 0;
}

.analysis-point .pcr-text {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.4;
}

/* Who Agrees column — channel avatars with colored rings */
.who-agrees {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 70px;
}

.who-agrees-label {
    font-size: 0.72rem;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agrees-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.agrees-avatar-sm {
    width: 22px;
    height: 22px;
    border-width: 2px;
}

.agrees-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.agrees-avatar-letter {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mobile responsive for new components */
@media (max-width: 768px) {
    .channel-profiles-row {
        flex-direction: column;
    }

    .dualbar-row {
        flex-wrap: wrap;
    }

    .dualbar-left,
    .dualbar-right {
        flex-basis: 100%;
    }

    .dualbar-label {
        text-align: center;
        margin-bottom: 0.25rem;
    }

    .rating-detail-takes {
        grid-template-columns: 1fr 1fr;
    }
    .rating-detail-take:last-child {
        text-align: right;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* MOBILE-FRIENDLY ARTICLE IMPROVEMENTS                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* -- Tablet (max 768px) -------------------------------------------------- */
@media (max-width: 768px) {
    /* Article body: bump font size & loosen line-height for readability */
    .article-body {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .article-body h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.6rem;
    }

    .article-body h3 {
        font-size: 1.1rem;
    }

    /* Blockquotes: tighter padding so they don't push off-screen */
    .article-body blockquote {
        padding: 0.65rem 0.85rem;
        margin: 1rem 0;
        font-size: 0.95rem;
    }

    /* Verdict card: stack score ring above text */
    .verdict-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .verdict-card {
        padding: 1.15rem;
    }

    .verdict-headline {
        font-size: 1.1rem;
    }

    /* Quick summary text */
    .quick-summary-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    /* Price guide: stack metrics vertically */
    .price-guide-row {
        flex-direction: column;
        gap: 1rem;
    }

    .price-guide-value {
        font-size: 1.2rem;
    }

    /* Expert review: swap to mobile sequential layout */
    .expert-desktop-layout {
        display: none;
    }

    .expert-mobile-layout {
        display: block;
    }

    /* Channel highlights: stack earlier on tablet */
    .channel-highlights-grid {
        flex-direction: column;
        gap: 1rem;
    }

    /* Dashboard sections: reduce padding */
    .dashboard-section {
        margin-bottom: 1rem;
    }

    .dashboard-row {
        gap: 0.75rem;
    }

    /* Pricing table: smaller padding on cells */
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.6rem 0.75rem;
        font-size: 0.82rem;
    }

    /* Expert review card: reduce internal padding */
    .expert-review-card {
        padding: 1rem;
    }

    /* Who Agrees: stack avatars vertically on mobile */
    .who-agrees {
        flex-direction: column;
        width: 36px;
        gap: 0.2rem;
    }

    .analysis-tab-header .who-agrees-label {
        width: 36px;
    }

    /* Channel summary: tighter on mobile */
    .channel-summary-col {
        padding: 0.75rem 1rem;
    }

    /* Verdict stats: wrap */
    .verdict-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Section headings */
    .section-heading-lg {
        font-size: 1.35rem;
    }

    /* Tag links: larger touch targets */
    .tag-link {
        padding: 0.35rem 0.65rem;
        font-size: 0.82rem;
    }
}

/* -- Small mobile (max 480px) -------------------------------------------- */
@media (max-width: 480px) {
    /* Even tighter for small screens */
    .blog-main {
        padding: 5rem 0.75rem 2.5rem;
    }

    .article-header h1 {
        font-size: 1.45rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.2rem;
    }

    .article-body blockquote {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }

    /* Quick summary specs: single column */
    .quick-summary-specs {
        grid-template-columns: 1fr;
    }

    .spec-item {
        padding: 0.75rem 1rem;
        border-right: none;
    }

    /* Verdict card: full-width, minimal padding */
    .verdict-card {
        padding: 0.85rem;
    }

    .verdict-score-ring {
        width: 64px;
        height: 64px;
    }

    .score-svg {
        width: 64px;
        height: 64px;
    }

    .score-number {
        font-size: 1.25rem;
    }

    /* Charts: reduce height for small screens */
    .bar-chart-wrap {
        height: 220px;
    }

    .line-chart-wrap {
        height: 180px;
    }

    .charts-row .radar-section .radar-chart-wrap {
        height: 220px;
    }

    /* PCR columns: full width, reduce padding */
    .pcr-column {
        padding: 0.6rem 0.75rem;
    }

    /* Reviewer columns: tighter */
    .reviewer-col-content {
        padding: 0.6rem 0.75rem;
    }

    /* Project facts: allow wrapping with smaller tags */
    .project-fact {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}
