/* =========================================================
   TEMA VISUAL PARA ENTRADAS (SINGLE POSTS)
   ========================================================= */

/* 1. Fondo y Contenedor del Artículo */
.single-post {
    background-color: #fff !important;
}

.single-post article, 
.single-post .post-content, 
.single-post .entry-content {
    max-width: 850px !important;
    margin: 0 auto !important;
    padding-bottom: 50px;
    background: transparent !important;
}

/* 2. Título de la Entrada */
.single-post .entry-title, 
.single-post h1.post-title {
    font-family: 'Playfair Display', serif !important;
    color: #4B0082 !important;
    font-size: 2.2rem !important;
    text-align: center !important;
    margin: 40px 0 30px 0 !important;
    font-weight: 700 !important;
}

/* 3. Estilo de los Párrafos (Tipografía Dund) */
.single-post p, 
.single-post .wpb_text_column p {
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    color: #333 !important;
    margin-bottom: 1.5em !important;
}

/* 4. Solución al problema del corte [...] */
/* Forzamos a que el resumen no se use y se use el contenido */
.single-post .entry-summary {
    display: none !important;
}

.single-post .entry-content {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
}

/* Eliminar puntos suspensivos que vienen por código */
.single-post .entry-content::after {
    display: none !important;
    content: "" !important;
}