/**
 * Winrouh — Blog Article Page
 * Typography: Newsreader (headings, editorial) + DM Sans (UI, body)
 */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;0,6..72,800;1,6..72,400;1,6..72,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');
@import url('/assets/css/placeholders.css');

/* ══════════════════════════════════════════════
   PAGE WRAPPER
   ══════════════════════════════════════════════ */
.blog-article-page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* ══════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════ */
.blog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 0 0;
    font-size: 13px;
    color: #94a3b8;
    flex-wrap: wrap;
    font-family: 'DM Sans', sans-serif;
}
.blog-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-breadcrumbs a:hover { color: #00635a; }
.blog-breadcrumbs .sep { color: #cbd5e1; font-size: 11px; }

/* ══════════════════════════════════════════════
   HERO COVER
   ══════════════════════════════════════════════ */
.blog-hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 42vh, 480px);
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0 0;
}

/* Real photo cover */
.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CSS-only hero (no photo) */
.blog-hero-css {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 36px 44px;
}
.blog-hero-css.cat-guide     { background: linear-gradient(145deg, #0f4c75 0%, #1b6ca8 40%, #0d7377 100%); }
.blog-hero-css.cat-classement { background: linear-gradient(145deg, #7b2d00 0%, #b45309 40%, #d97706 100%); }
.blog-hero-css.cat-decouverte { background: linear-gradient(145deg, #064e3b 0%, #047857 40%, #10b981 100%); }
.blog-hero-css.cat-conseil    { background: linear-gradient(145deg, #1e1b4b 0%, #4338ca 40%, #6366f1 100%); }
.blog-hero-css.cat-actualite  { background: linear-gradient(145deg, #450a0a 0%, #991b1b 40%, #dc2626 100%); }

/* Overlay gradient on real photos */
.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.05) 35%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.78) 100%
    );
}

/* Title inside hero */
.blog-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 44px;
    z-index: 2;
}
.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
}
.blog-hero-badge.cat-guide     { background: rgba(29,78,216,0.75); color: #fff; }
.blog-hero-badge.cat-classement { background: rgba(180,83,9,0.8); color: #fff; }
.blog-hero-badge.cat-decouverte { background: rgba(5,150,105,0.8); color: #fff; }
.blog-hero-badge.cat-conseil    { background: rgba(99,102,241,0.8); color: #fff; }
.blog-hero-badge.cat-actualite  { background: rgba(220,38,38,0.8); color: #fff; }

.blog-hero-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(24px, 3.8vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
    margin: 0;
    max-width: 740px;
    letter-spacing: -0.5px;
}
.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
}
.blog-hero-meta i {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    margin-right: 4px;
}
.blog-hero-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* CSS-only hero — title content inside the div */
.blog-hero-css .blog-hero-content {
    position: static;
    padding: 0;
}

/* ══════════════════════════════════════════════
   MAIN LAYOUT
   ══════════════════════════════════════════════ */
.blog-article-layout {
    display: grid;
    grid-template-columns: 1fr 288px;
    gap: 56px;
    align-items: start;
    margin-top: 44px;
}
.blog-article-main {
    min-width: 0;
    /* Content column is wider than the text max-width — text constrained inside */
}

/* ══════════════════════════════════════════════
   SOMMAIRE (Table of contents)
   ══════════════════════════════════════════════ */
.blog-sommaire {
    background: #fafcfa;
    border: 1px solid #d1fae5;
    border-left: 4px solid #00635a;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 40px;
    max-width: 720px;
}
.blog-sommaire-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00635a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-sommaire-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: #00635a;
    border-radius: 2px;
}
.blog-sommaire ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: sommaire;
}
.blog-sommaire ol li {
    counter-increment: sommaire;
    padding: 5px 0;
    border-bottom: 1px solid #ecfdf5;
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}
.blog-sommaire ol li:last-child { border-bottom: none; }
.blog-sommaire ol li::before {
    content: counter(sommaire, decimal-leading-zero);
    font-size: 11px;
    font-weight: 700;
    color: #00635a;
    opacity: 0.6;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}
.blog-sommaire ol li a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.blog-sommaire ol li a:hover { color: #00635a; }

/* ══════════════════════════════════════════════
   ARTICLE CONTENT TYPOGRAPHY
   ══════════════════════════════════════════════ */
.blog-article-content {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #374151;
    /* CRITICAL: max 72 chars/line for readability — ui-ux rule line-length-control */
    max-width: 720px;
}

/* Lead paragraph (first <p>) — editorial intro */
.blog-article-content > p:first-child {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 20px;
    line-height: 1.7;
    color: #1e293b;
    font-weight: 400;
    font-style: italic;
    border-left: 3px solid #00635a;
    padding-left: 20px;
    margin-bottom: 28px;
}

/* H2 — editorial serif anchor with decorative teal separator */
.blog-article-content h2 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 56px 0 20px;
    padding: 24px 0 14px 0;
    border-bottom: 2px solid #e2e8f0;
    line-height: 1.2;
    scroll-margin-top: 90px;
    letter-spacing: -0.3px;
    position: relative;
}
/* Separator: thin teal line + small diamond motif before each H2 */
.blog-article-content h2::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #00635a, #10b981);
    border-radius: 2px;
    margin-bottom: 18px;
}
.blog-article-content h2::after {
    content: '◆';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -8px;
    font-size: 8px;
    color: #00635a;
    background: #fff;
    padding: 0 6px;
    line-height: 1;
}

/* H3 */
.blog-article-content h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 21px;
    font-weight: 600;
    color: #1e293b;
    margin: 36px 0 12px;
    scroll-margin-top: 90px;
}

/* Paragraphs */
.blog-article-content p {
    margin: 0 0 18px;
}

/* Images */
.blog-article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 24px 0;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Blockquotes — testimonials */
.blog-article-content blockquote {
    border-left: none;
    margin: 28px 0;
    padding: 20px 24px 20px 28px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fffe 100%);
    border-radius: 0 12px 12px 0;
    border-left: 4px solid #00635a;
    position: relative;
}
/* Pull quote centré — override du style blockquote générique */
.blog-article-content blockquote.blog-pull-quote {
    border: none !important;
    border-top: 2px solid #00635a !important;
    border-bottom: 2px solid #00635a !important;
    border-radius: 0 !important;
    padding: 1.5em 2em;
    text-align: center;
    background: #f8fffe;
}
.blog-article-content blockquote.blog-pull-quote::before {
    display: none !important;
}
.blog-article-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 48px;
    line-height: 1;
    color: #00635a;
    opacity: 0.25;
    font-family: Georgia, serif;
}
.blog-article-content blockquote p {
    font-size: 15.5px;
    font-style: italic;
    color: #1e293b;
    margin: 0 0 6px;
    padding-left: 12px;
    line-height: 1.65;
}
.blog-article-content blockquote cite,
.blog-article-content blockquote footer {
    font-size: 13px;
    color: #64748b;
    font-style: normal;
    font-weight: 600;
    padding-left: 12px;
    display: block;
}
.blog-article-content blockquote cite::before { content: '— '; }

/* Italic quotes (em) used as review quotes */
.blog-article-content em {
    font-style: italic;
    color: #374151;
}

/* Lists */
.blog-article-content ul,
.blog-article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.blog-article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.blog-article-content ul li::marker { color: #00635a; }

/* Links */
.blog-article-content a {
    color: #00635a;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(0,99,90,0.3);
    transition: border-color 0.2s;
}
.blog-article-content a:hover {
    border-color: #00635a;
}

/* Restaurant name callout (strong inside content) */
.blog-article-content strong {
    color: #0f172a;
    font-weight: 700;
}

/* Info box / highlight */
.blog-article-content .info-box,
.blog-article-content .highlight-box {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14.5px;
    color: #78350f;
}

/* ══════════════════════════════════════════════
   TAGS
   ══════════════════════════════════════════════ */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}
.blog-tag {
    padding: 6px 14px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.blog-tag:hover {
    background: #00635a;
    color: #fff;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   SOURCES
   ══════════════════════════════════════════════ */
.blog-sources {
    margin-top: 32px;
    padding: 20px 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.blog-sources h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #475569;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-sources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-sources li { padding: 4px 0; font-size: 13px; }
.blog-sources a {
    color: #00635a;
    text-decoration: none;
    word-break: break-all;
    border: none;
}
.blog-sources a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   PHOTO INLINE ÉDITORIALE (style magazine food)
   ══════════════════════════════════════════════ */
.blog-inline-photo {
    margin: 44px 0;
    padding: 0;
    border: none;
}
.blog-inline-photo img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    margin: 0;
}
.blog-inline-photo figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.1px;
}
@media (max-width: 640px) {
    .blog-inline-photo img { height: 220px; border-radius: 8px; }
}
body.dark-mode .blog-inline-photo figcaption { color: #64748b; }

/* ══════════════════════════════════════════════
   RELATED ARTICLES (bottom)
   ══════════════════════════════════════════════ */
.blog-related-bottom {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid #e2e8f0;
}
.blog-related-bottom h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px;
    border-left: none;
    padding: 0;
}
.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-related-card {
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.25s, transform 0.25s;
    display: block;
}
.blog-related-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.blog-related-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.blog-related-card-ph {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}
.blog-related-card-ph.cat-guide     { background: linear-gradient(135deg, #dbeafe 0%, #2563eb 100%); }
.blog-related-card-ph.cat-classement { background: linear-gradient(135deg, #fef3c7 0%, #d97706 100%); }
.blog-related-card-ph.cat-decouverte { background: linear-gradient(135deg, #d1fae5 0%, #059669 100%); }
.blog-related-card-ph.cat-conseil    { background: linear-gradient(135deg, #ede9fe 0%, #7c3aed 100%); }
.blog-related-card-ph.cat-actualite  { background: linear-gradient(135deg, #fee2e2 0%, #dc2626 100%); }

.blog-related-card-body { padding: 14px 16px; }
.blog-related-card-body span {
    font-size: 11px;
    color: #94a3b8;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.blog-related-card-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ══════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════ */
.blog-sidebar {
    position: sticky;
    top: 88px;
}
.sidebar-section {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sidebar-section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-section h3 i { color: #00635a; }

/* Sidebar TOC */
.sidebar-toc { padding: 20px; }
.sidebar-toc h3 { letter-spacing: 0.5px; }
.sidebar-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.sidebar-toc ol li {
    counter-increment: toc;
    padding: 5px 0;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    gap: 8px;
    align-items: baseline;
}
.sidebar-toc ol li:last-child { border-bottom: none; }
.sidebar-toc ol li::before {
    content: counter(toc);
    font-size: 10px;
    font-weight: 700;
    color: #00635a;
    opacity: 0.6;
    flex-shrink: 0;
    min-width: 14px;
}
.sidebar-toc ol li a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    border: none;
    transition: color 0.15s;
}
.sidebar-toc ol li a:hover { color: #00635a; }

/* Sidebar restos */
.sidebar-resto {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.sidebar-resto:last-child { border: none; }
.sidebar-resto:hover { background: #f8fafc; margin: 0 -10px; padding: 8px 10px; border-radius: 8px; }
.sidebar-resto-img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.sidebar-resto-img-ph {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.sidebar-resto-info { flex: 1; min-width: 0; }
.sidebar-resto-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-resto-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}
.sidebar-resto-rating {
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
    flex-shrink: 0;
    background: #fffbeb;
    padding: 3px 7px;
    border-radius: 6px;
}

/* Sidebar related articles */
.related-article {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}
.related-article:last-child { border: none; }
.related-article:hover .related-article-title { color: #00635a; }
.related-article-img {
    width: 56px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.related-article-img-ph {
    width: 56px;
    height: 42px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.related-article-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

/* ══════════════════════════════════════════════
   INLINE PLACEHOLDERS (AI-generated article helpers)
   ══════════════════════════════════════════════ */
.blog-photo-placeholder {
    margin: 28px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.blog-photo-placeholder .bpp-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.blog-photo-placeholder .bpp-text { flex: 1; }
.blog-photo-placeholder .bpp-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 4px;
}
.blog-photo-placeholder .bpp-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    font-style: italic;
}
.blog-web-insight {
    margin: 20px 0;
    padding: 16px 20px;
    background: #fffbeb;
    border-left: 4px solid #d97706;
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    color: #92400e;
}
.blog-web-insight .bwi-source { font-size: 12px; color: #b45309; margin-top: 6px; }
.blog-web-insight .bwi-source a { color: #92400e; font-weight: 600; border: none; }

/* ══════════════════════════════════════════════
   PULL QUOTE — style NYT Food, 1er avis fort
   ══════════════════════════════════════════════ */
.blog-pull-quote {
    margin: 48px -24px;
    padding: 36px 44px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-top: 3px solid #00635a;
    border-bottom: 3px solid #00635a;
    position: relative;
    text-align: center;
}
.bpq-mark {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 96px;
    line-height: 0.6;
    color: #00635a;
    opacity: 0.15;
    position: absolute;
    top: 24px;
    left: 32px;
    pointer-events: none;
}
.bpq-text {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(20px, 2.8vw, 28px);
    font-style: italic;
    font-weight: 400;
    color: #0f172a;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 20px;
    border: none;
    padding: 0;
    background: none;
}
.bpq-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}
.bpq-author { font-weight: 700; color: #374151; }
.bpq-sep    { color: #cbd5e1; }
.bpq-resto  {
    color: #00635a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,99,90,0.3);
}
.bpq-resto:hover { border-color: #00635a; }
.bpq-stars  { color: #d97706; font-size: 12px; letter-spacing: 1px; }

@media (max-width: 640px) {
    .blog-pull-quote { margin: 36px -16px; padding: 28px 24px; }
    .bpq-mark { font-size: 64px; top: 16px; left: 16px; }
}
body.dark-mode .blog-pull-quote {
    background: linear-gradient(135deg, #052e16 0%, #064e3b 100%);
    border-color: #10b981;
}
body.dark-mode .bpq-text { color: #f0fdf4; }
body.dark-mode .bpq-author { color: #d1fae5; }

/* ══════════════════════════════════════════════
   REVIEW CARD — avis inline standard
   ══════════════════════════════════════════════ */
.blog-review-card {
    margin: 36px 0;
    padding: 24px 28px;
    background: #fafffe;
    border: 1px solid #d1fae5;
    border-left: 4px solid #00635a;
    border-radius: 0 14px 14px 0;
    position: relative;
}
.blog-review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 52px;
    line-height: 1;
    color: #00635a;
    opacity: 0.1;
    font-family: Georgia, serif;
    pointer-events: none;
}
.brc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.brc-resto-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #00635a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}
.brc-resto-name:hover { color: #004d40; }
.brc-note {
    font-size: 12px;
    font-weight: 700;
    color: #d97706;
    background: #fffbeb;
    padding: 3px 10px;
    border-radius: 20px;
}
.brc-message {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 16.5px;
    font-style: italic;
    color: #1e293b;
    line-height: 1.7;
    margin: 0 0 12px;
}
.brc-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

body.dark-mode .blog-review-card {
    background: #052e16;
    border-color: #065f46;
    border-left-color: #10b981;
}
body.dark-mode .brc-message { color: #d1fae5; }
body.dark-mode .brc-author  { color: #6ee7b7; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 960px) {
    .blog-article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .blog-article-page { padding: 0 16px 60px; }
    .blog-hero { height: 240px; border-radius: 14px; }
    .blog-hero-content { padding: 20px 20px; }
    .blog-hero-title { font-size: 20px; }
    .blog-hero-meta { gap: 10px; font-size: 12px; }
    .blog-article-layout { margin-top: 24px; }
    .blog-article-content h2 { font-size: 21px; padding: 20px 0 12px 0; margin: 40px 0 16px; }
    .blog-article-content h3 { font-size: 17px; }
    .blog-article-content > p:first-of-type { font-size: 16px; }
    .blog-article-content { font-size: 15px; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-sommaire { padding: 16px 18px; }
}

/* ══════════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════════ */
body.dark-mode .blog-article-content { color: #cbd5e1; }
body.dark-mode .blog-article-content > p:first-of-type { color: #e2e8f0; }
body.dark-mode .blog-article-content h2 { color: #f1f5f9; border-color: #1e293b; }
body.dark-mode .blog-article-content h2::after { background: #0f172a; color: #10b981; }
body.dark-mode .blog-article-content h3 { color: #e2e8f0; }
body.dark-mode .blog-article-content strong { color: #f1f5f9; }
body.dark-mode .blog-article-content blockquote { background: linear-gradient(135deg, #064e3b 0%, #0f2a1e 100%); }
body.dark-mode .blog-article-content blockquote p { color: #d1fae5; }
body.dark-mode .blog-article-content a { color: #34d399; border-color: rgba(52,211,153,0.3); }
body.dark-mode .blog-sommaire { background: #0f2a1e; border-color: #065f46; }
body.dark-mode .blog-sommaire ol li { border-color: #064e3b; }
body.dark-mode .blog-sommaire ol li a { color: #e2e8f0; }
body.dark-mode .sidebar-section { background: #1e293b; border-color: #334155; }
body.dark-mode .sidebar-section h3 { color: #f1f5f9; border-color: #334155; }
body.dark-mode .sidebar-toc ol li a { color: #94a3b8; }
body.dark-mode .sidebar-resto-name { color: #f1f5f9; }
body.dark-mode .related-article-title { color: #e2e8f0; }
body.dark-mode .blog-related-card { background: #1e293b; border-color: #334155; }
body.dark-mode .blog-related-card-body h3 { color: #f1f5f9; }
body.dark-mode .blog-tag { background: #334155; color: #94a3b8; }
body.dark-mode .blog-sources { background: #1e293b; border-color: #334155; }
body.dark-mode .blog-photo-placeholder { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-color: #475569; }
body.dark-mode .blog-photo-placeholder .bpp-label,
body.dark-mode .blog-photo-placeholder .bpp-desc { color: #64748b; }
body.dark-mode .blog-web-insight { background: #422006; color: #fde68a; }
body.dark-mode .blog-web-insight .bwi-source { color: #fbbf24; }
