
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    /* --- HERO SECTION --- */
    .single-hero {
        position: relative;
        /* Le gradient sert d'overlay sombre pour la lisibilité */
       
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        height: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .hero-content { z-index: 2; position: relative; }

    .single-hero h1 {
        font-family: var(--serif);
        font-size: clamp(2rem, 5vw, 3.5rem); /* Taille fluide */
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 20px;
    }

    .custom-breadcrumb {
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .custom-breadcrumb a { color: var(--gold); text-decoration: none; transition: 0.3s; }
    .custom-breadcrumb a:hover { color: white; }
    .separator { margin: 0 10px; color: rgba(255,255,255,0.5); }

    /* --- LAYOUT SECTION --- */
    .page-minimal { padding: 80px 0; }
    .layout-flex { display: flex; gap: 60px; align-items: flex-start; }

    .article-minimal { flex: 2; min-width: 0; } /* min-width 0 évite les débordements de flex */
    .sidebar-minimal { flex: 1; position: sticky; top: 100px; }

    .category-tag { 
        text-transform: uppercase; 
        letter-spacing: 3px; 
        font-size: 0.8rem; 
        color: var(--gold); 
        font-weight: 700;
        display: block;
        margin-bottom: 15px;
    }

    .minimal-title { 
        font-family: var(--serif);
        font-size: 2.8rem; 
        margin: 0 0 20px 0; 
        color: #111;
        line-height: 1.2;
    }

    .title-underline { 
        width: 60px; 
        height: 3px; 
        background: var(--gold); 
        margin-bottom: 40px; 
    }

    .minimal-body { font-size: 1.1rem; color: #444; }
    .minimal-body p { margin-bottom: 25px; }

    .quote-box { 
        margin: 40px 0; 
        padding: 30px; 
        border-left: 3px solid var(--gold); 
        font-family: var(--serif); 
        font-style: italic;
        font-size: 1.4rem; 
        color: #555;
        background: #fdfdfd;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.02);
    }

    /* Bouton */
    .btn-minimal-gold {
        display: inline-flex;
        align-items: center;
        background: var(--gold);
        color: white;
        padding: 18px 35px;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        border: 1px solid var(--gold);
        margin-top: 20px;
    }

    .btn-minimal-gold:hover {
        background: transparent;
        color: var(--gold);
        transform: translateY(-2px);
    }

    /* --- SIDEBAR --- */
    .info-card { margin-bottom: 40px; background: white; padding: 35px; border: 1px solid #f0f0f0; }
    .info-card h4 { 
        font-family: var(--serif); 
        text-transform: uppercase; 
        letter-spacing: 1px; 
        margin-bottom: 20px; 
        font-size: 1.1rem; 
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .minimal-list { list-style: none; padding: 0; }
    .minimal-list li { 
        padding: 12px 0; 
        border-bottom: 1px solid #f9f9f9; 
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        font-weight: 600;
    }

    .minimal-list li span { 
        font-size: 0.7rem; 
        color: var(--gold); 
        margin-right: 15px; 
        width: 20px;
    }

    .contact-card-minimal { 
        background: var(--anthracite); 
        padding: 40px 30px; 
        text-align: center; 
        color: white;
    }

    .minimal-phone { 
        display: block; 
        font-size: 1.5rem; 
        color: var(--gold); 
        text-decoration: none; 
        font-weight: 700; 
        margin: 10px 0;
        font-family: var(--serif);
    }

    .sub-text { font-size: 0.65rem; text-transform: uppercase; color: #bbb; letter-spacing: 2px; }

    /* Responsive */
    @media (max-width: 1024px) {
        .layout-flex { flex-direction: column; }
        .sidebar-minimal { width: 100%; position: static; }
        .page-minimal { padding: 50px 0; }
        .single-hero { height: 350px; }
    }