/**
 * MODULO 5: Estilos contenidos SEO
 *
 * CSS para los bloques de contenido SEO expandibles.
 * Extraido de inc/functions/seo-content.php para mejor rendimiento y cache.
 */

.seo-content-block {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.seo-content-wrapper {
    line-height: 1.7;
}

.seo-content-full h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.seo-content-full h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.seo-content-full p {
    margin-bottom: 1rem;
}

.seo-content-full ul,
.seo-content-full ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.seo-content-full li {
    margin-bottom: 0.5rem;
}

.seo-content-full strong {
    font-weight: 600;
    color: #111827;
}

.seo-content-full a {
    color: #ec4899;
    text-decoration: underline;
}

.seo-content-full a:hover {
    color: #be185d;
}

.seo-toggle-btn:focus {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

@media print {
    .seo-content-preview {
        display: none !important;
    }
    .seo-content-full {
        display: block !important;
    }
    .seo-toggle-btn {
        display: none !important;
    }
}
