/**
 * Styles pour le contenu SEO
 * Sections informatives, progressions, chansons, accords similaires
 */

/* ===================================
   SEO CONTENT WRAPPER
   =================================== */

.seo-content-wrapper {
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-top: 2px solid var(--border-color, #808000);
}

.seo-main-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    text-align: center;
    margin-bottom: 2rem;
}

/* ===================================
   SEO SECTIONS
   =================================== */

.seo-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color, #e5e7eb);
}

.seo-section {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.seo-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
}

.seo-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.seo-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #4b5563);
    margin-bottom: 1rem;
}

.seo-content p {
    line-height: 1.7;
    color: var(--text-secondary, #4b5563);
    margin-bottom: 1rem;
}

/* ===================================
   SEO LISTS
   =================================== */

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

.seo-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary, #4b5563);
    line-height: 1.6;
}

.seo-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color, #808000);
    font-weight: bold;
}

.seo-list a {
    color: var(--primary-color, #808000);
    text-decoration: none;
    transition: color 0.2s ease;
}

.seo-list a:hover {
    color: var(--primary-hover, #808000);
    text-decoration: underline;
}

.seo-content ul.seo-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.seo-content ul.seo-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary, #4b5563);
    line-height: 1.6;
}

.seo-content ul.seo-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #808000;
    font-weight: bold;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .seo-content-wrapper {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .seo-main-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .seo-content {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .seo-section {
        margin-bottom: 2rem;
    }
    
    .seo-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }
    
    .seo-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
        padding-bottom: 0.375rem;
    }
    
    .seo-section p,
    .seo-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .seo-list li,
    .seo-content ul.seo-list li {
        padding: 0.4rem 0;
        padding-left: 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .seo-content-wrapper {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }
    
    .seo-main-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .seo-content {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .seo-section {
        margin-top: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .seo-section h2 {
        font-size: 1.15rem;
    }
    
    .seo-section h3 {
        font-size: 1.1rem;
    }
    
    .seo-section p,
    .seo-content p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 0.875rem;
    }
    
    .seo-list li,
    .seo-content ul.seo-list li {
        padding: 0.35rem 0;
        padding-left: 1.125rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .seo-list li::before,
    .seo-content ul.seo-list li::before {
        font-size: 0.875rem;
    }
}