
    :root {
        --theme-green: #519D88;
        --accent-text: #519D88;
        --text-col: #333;
        --bg-light: #f8f9fa;
        --border-col: #e0e0e0;
    }

    body.dark-mode {
        --theme-green: #2D443C;
        --accent-text: #81c7b5;
        --text-col: #E0E0E0;
        --bg-light: #121212;
        --border-col: #444;
    }

    body.dark-mode .text-muted {
        color: rgba(255, 255, 255, 0.6) !important;
    }

    .hero-compact {
        position: relative;
        width: 100%;
        height: 45vh;
        min-height: 320px;
        max-height: 480px;
        overflow: hidden;
        background-color: #111;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
    }

    .hero-no-img {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a3a30 0%, #2d6b55 60%, #519D88 100%);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.78));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0 24px 32px;
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
        width: 100%;
        color: white;
    }

    .astuce-hero-badge {
        display: inline-block;
        background: rgba(81, 157, 136, 0.85);
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 12px;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .astuce-hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.7rem, 4vw, 3rem);
        font-weight: 900;
        margin: 0;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
        line-height: 1.2;
        color: white;
    }

    .back-btn {
        position: absolute;
        top: 18px;
        left: 20px;
        z-index: 10;
        color: white;
        font-size: 1.4rem;
        text-decoration: none;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
        transition: transform 0.2s;
    }

    .back-btn:hover {
        transform: translateX(-4px);
        color: white;
    }

    .specs-bar {
        background-color: var(--theme-green);
        color: white;
        padding: 13px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        width: 100%;
        overflow: hidden;
    }

    .specs-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 12px;
        display: flex;
        justify-content: center;
        gap: 0;
    }

    .spec-box {
        text-align: center;
        flex: 1;
        min-width: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 10px;
    }

    .spec-box:last-child {
        border-right: none;
    }

    .spec-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2px;
        font-weight: 600;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .spec-value {
        font-weight: 700;
        color: white;
        font-size: 0.92rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    @media (max-width: 600px) {
        .specs-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            gap: 0;
        }

        .specs-container::-webkit-scrollbar {
            display: none;
        }

        .spec-box {
            flex: 0 0 auto;
            min-width: 80px;
        }
    }

    .video-section {
        max-width: 900px;
        margin: 30px auto 0;
        padding: 0 20px;
    }

    .article-container {
        max-width: 860px;
        margin: 40px auto 60px;
        padding: 0 20px;
    }

    .seo-section {
        margin-bottom: 48px;
    }

    .seo-question {
        font-family: 'Playfair Display', serif;
        font-size: 1.7rem;
        color: var(--text-col);
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 3px solid var(--accent-text);
    }

    .seo-sub {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-col);
        margin: 20px 0 8px;
    }

    .seo-answer {
        font-family: 'Inter', sans-serif;
        font-size: 1.03rem;
        line-height: 1.8;
        color: var(--text-col);
    }

    .seo-answer p {
        margin-bottom: 1rem;
    }

    .seo-answer ul,
    .seo-answer ol {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .seo-answer li {
        margin-bottom: 0.4rem;
    }

    .seo-answer strong {
        color: var(--text-col);
    }

    .astuce-content blockquote,
    .seo-answer blockquote,
    .seo-section blockquote {
        border-left: 4px solid var(--accent-text) !important;
        background: rgba(81, 157, 136, 0.08) !important;
        padding: 1rem 1.5rem !important;
        margin: 1.8rem 0 !important;
        border-radius: 0 6px 6px 0 !important;
        font-style: italic;
        color: var(--text-col);
        font-size: 1rem;
    }

    body.dark-mode .astuce-content blockquote,
    body.dark-mode .seo-answer blockquote,
    body.dark-mode .seo-section blockquote {
        background: rgba(81, 157, 136, 0.14) !important;
    }

    .gear-box {
        background: rgba(81, 157, 136, 0.08);
        border-left: 4px solid var(--accent-text);
        padding: 18px 22px;
        border-radius: 0 8px 8px 0;
        margin: 18px 0;
        color: var(--text-col);
    }

    body.dark-mode .gear-box {
        background: rgba(81, 157, 136, 0.12);
    }

    .gear-box ul {
        margin: 0;
        padding-left: 1.4rem;
    }

    .gear-box li {
        margin-bottom: 0.3rem;
    }

    .context-link {
        color: var(--accent-text);
        font-style: italic;
        text-decoration: underline;
        text-decoration-style: dotted;
    }

    .context-link::before {
        content: "🧭 ";
    }

    .seo-answer table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.2rem 0;
        font-size: 0.95rem;
    }

    .seo-answer th {
        background: var(--accent-text);
        color: white;
        padding: 8px 12px;
        text-align: left;
    }

    .seo-answer td {
        border: 1px solid var(--border-col);
        padding: 8px 12px;
    }

    .seo-answer tr:nth-child(even) td {
        background: rgba(81, 157, 136, 0.05);
    }

    .section-divider {
        border: none;
        border-top: 1px solid var(--border-col);
        margin: 40px 0;
    }

    .materiel-section h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--text-col);
        border-bottom: 2px solid var(--accent-text);
        padding-bottom: 8px;
        margin-bottom: 16px;
    }

    .materiel-section .list-group-flush .list-group-item {
        border-color: rgba(81, 157, 136, 0.35) !important;
        border-bottom-width: 1px;
        background: transparent;
        color: var(--text-col);
    }

    .materiel-section .list-group-flush .list-group-item:last-child {
        border-bottom: none;
    }

    .suggestions-section {
        border-top: 2px solid #519d88;
        padding-top: 40px;
        margin-top: 50px;
    }

    .suggestions-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--text-col);
        margin-bottom: 24px;
    }

    .suggestions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

    .suggestion-card {
        background: var(--bg-light);
        border: 1px solid var(--border-col);
        border-radius: 10px;
        overflow: hidden;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
        display: block;
    }

    body.dark-mode .suggestion-card {
        background: #1a1a1a;
    }

    .suggestion-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        text-decoration: none;
    }

    .suggestion-card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
    }

    .suggestion-card .no-img {
        width: 100%;
        height: 140px;
        background: linear-gradient(135deg, rgba(81, 157, 136, 0.15), rgba(81, 157, 136, 0.05));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    .suggestion-body {
        padding: 12px 14px;
    }

    .suggestion-body .sug-poisson {
        font-size: 0.75rem;
        color: var(--accent-text);
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .suggestion-body .sug-titre {
        font-size: 0.92rem;
        font-weight: 600;
        color: var(--text-col);
        line-height: 1.35;
    }
