/* ===== 8-SEO-SECTION-DICTIONNAIRE.CSS ===== */
/* 🎯 Design minimaliste élégant - Titres olive, texte noir, bordure olive */

/* ========================================
   CONTENEUR PRINCIPAL
   ======================================== */

.seo-section {
    background: transparent;
    padding: 0;
}

.seo-container {
    max-width: 50rem; /* 800px - plus étroit */
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem 1.5rem;
    background: transparent;
    
    /* 🟢 Bordure olive complète autour de la section */
    border: var(--bordure-epaisse) solid var(--bordure-principale);
    border-radius: var(--rayon-lg);
    box-shadow: var(--ombre-lg);
}

/* ========================================
   TITRE PRINCIPAL
   ======================================== */

.seo-main-title {
    color: #808000; /* Vert olive */
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: center;
}

/* ========================================
   BLOCS DE CONTENU
   ======================================== */

.seo-content-block {
    background: transparent;
    margin-bottom: 2rem;
    padding: 0;
}

.seo-content-block:last-child {
    margin-bottom: 0;
}

/* ========================================
   TITRES DE BLOCS
   ======================================== */

.seo-block-title {
    color: #808000; /* Vert olive */
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

/* ========================================
   CONTENU DES BLOCS
   ======================================== */

.seo-block-content {
    color: #000; /* Noir */
    font-size: 0.875rem;
    line-height: 1.7;
}

.seo-block-content p {
    margin-bottom: 0.875rem;
}

.seo-block-content p:last-child {
    margin-bottom: 0;
}

.seo-block-content strong {
    color: #000; /* Noir */
    font-weight: 600;
}

/* ========================================
   LISTES - VERSION COMPACTE
   ======================================== */

.seo-list {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.seo-list li {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 0.875rem;
    color: #000; /* Noir */
}

.seo-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #808000; /* Vert olive */
    font-size: 1.25rem;
    line-height: 1.2;
}

.seo-list li:last-child {
    margin-bottom: 0;
}

.seo-list strong {
    color: #000; /* Noir */
    font-weight: 600;
}

/* ========================================
   LIENS INTERNES (Accords similaires)
   ======================================== */

.seo-list a {
    color: var(--couleur-primaire-foncee);
    text-decoration: none;
    transition: color var(--transition-normale);
}

.seo-list a:hover {
    color: var(--couleur-primaire);
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 47.9375rem) {
    .seo-container {
        padding: 2rem 1rem 2.5rem 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .seo-content-block {
        margin-bottom: 1.5rem;
    }
    
    .seo-main-title {
        margin-bottom: 1.5rem;
        font-size: 0.8125rem;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 48rem) {
    .seo-container {
        padding: 3rem 2rem 4rem 2rem;
    }
}

/* ========================================
   PRÉFÉRENCE MOUVEMENT RÉDUIT
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none;
    }
}

/* ========================================
   PRINT
   ======================================== */

@media print {
    .seo-section {
        background: transparent;
        padding: 0;
        margin-top: 2rem;
    }
    
    .seo-container {
        padding: 1rem 0;
        border: 1px solid #000;
        box-shadow: none;
    }
    
    .seo-main-title {
        color: #000;
    }
    
    .seo-block-title {
        color: #000;
    }
    
    .seo-block-content,
    .seo-list li {
        color: #000;
    }
    
    .seo-list li::before {
        color: #000;
    }
}