 /* Définitions de base et couleurs (reprises de style.css) */
        :root {
            --primary-color: forestgreen;
            --secondary-color: forestgreen;
            --text-color: #333;
            --light-bg: #f4f4f4;
            --white: #ffffff;
        }

        .blog-section {
            background-color: var(--light-bg);
        }

        /* --- GRILLE PRINCIPALE (ARTICLES + SIDEBAR) --- */
        .blog-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr;
            gap: 40px;
        }

        .text-left {
            text-align: left;
        }

        /* --- FLUX DES ARTICLES --- */
        .article-card {
            background: var(--white);
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            display: flex;
            transition: transform 0.3s, opacity 0.3s;
        }

        .article-image {
            width: 35%;
            min-height: 200px;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .article-image .image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .article-content {
            width: 65%;
            padding: 25px;
            display: flex;
            flex-direction: column; /* Pour aligner le bouton en bas si besoin */
        }

        .article-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .article-content p {
            color: #666;
            margin-bottom: 15px;
        }

        .meta {
            display: block;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 15px;
        }

        .meta i {
            margin-right: 5px;
        }

        /* MODIFICATION : Style du bouton qui remplace le lien */
        .read-more-btn {
            background: none;
            border: none;
            padding: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            text-align: left;
            width: fit-content;
            font-family: inherit; /* Hérite de la police du site */
            transition: color 0.2s;
        }
        
        .read-more-btn:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }

        /* --- TAGS DE L'ARTICLE --- */
        .tags-list {
            margin-bottom: 10px;
        }

        .tag {
            display: inline-block;
            padding: 3px 8px;
            background-color: #e6f0f8;
            color: var(--primary-color);
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-right: 5px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .tag:hover {
            background-color: #c9e1f5;
        }

        .article-card.hidden {
            display: none;
            opacity: 0;
        }

        .no-results-message {
            grid-column: 1 / -1;
            text-align: center;
            padding: 30px;
            font-size: 1.2rem;
            color: #888;
        }

        /* --- SIDEBAR (WIDGETS) --- */
        .blog-sidebar {
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .sidebar-widget {
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .sidebar-widget h4 {
            color: var(--primary-color);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        /* Tags Cloud */
        .tags-cloud .tag-link {
            display: inline-block;
            padding: 5px 10px;
            background-color: #eee;
            color: var(--text-color);
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: background-color 0.2s;
        }

        .tags-cloud .tag-link:hover {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        /* Newsletter Widget */
        .newsletter-widget input[type="email"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .newsletter-widget .btn {
            display: block;
            width: 100%;
            color: rgb(20, 170, 251);
        }

        /* Articles Récents */
        .sidebar-widget ul {
            padding-left: 20px;
            list-style: disc;
        }

        .sidebar-widget ul li {
            margin-bottom: 8px;
        }

        .sidebar-widget ul li a {
            color: var(--text-color);
        }

        .sidebar-widget ul li a:hover {
            color: var(--secondary-color);
        }

        /* --- NOUVEAU : STYLE DE LA MODALE --- */
        .modal {
            display: none; /* Caché par défaut */
            position: fixed; 
            z-index: 2000; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.6); /* Fond semi-transparent */
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 5% auto; 
            padding: 0;
            border: 1px solid #888;
            width: 70%; 
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            position: relative;
            animation: slideDown 0.4s ease-out;
        }

        @keyframes slideDown {
            from {top: -100px; opacity: 0;}
            to {top: 0; opacity: 1;}
        }

        .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
        z-index: 10;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
        }

        /* Style du contenu interne de la modale */
        .modal-body-content img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        
        .modal-text-wrapper {
            padding: 30px;
        }

        .modal-text-wrapper h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .modal-meta {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        /* --- RESPONSIVE MOBILE --- */
        @media (max-width: 900px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .blog-sidebar {
                position: static;
            }

            .article-card {
                flex-direction: column;
            }

            .article-image, .article-content {
                width: 100%;
                min-height: 150px;
            }
            
            .modal-content {
                width: 90%;
                margin: 20% auto;
            }
        }