/* Justificar el resumen en la página del artículo */
.obj_article_details .abstract {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 1.5em;
}

/* Opcional: Justificar también el texto de las secciones si es necesario */
.obj_article_details .full_text {
    text-align: justify;
}

/* 1. JUSTIFICACIÓN DEL RESUMEN */
.obj_article_details .abstract {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 25px; /* Espacio entre el resumen y el siguiente bloque */
    line-height: 1.6;    /* Mejora la legibilidad */
}

/* 2. ESTILO PARA LOS RESÚMENES BILINGÜES */
/* Esto ayuda a diferenciar visualmente el resumen en español del inglés */
.obj_article_details .abstract strong {
    display: block;
    text-transform: uppercase;
    font-size: 0.95em;
    color: #004a99; /* Azul institucional UCV */
    margin-bottom: 8px;
    border-bottom: 1px solid #eee; /* Línea sutil bajo el título 'RESUMEN' */
}

/* 3. AJUSTE PARA DISPOSITIVOS MÓVILES */
/* Evita que el justificado se vea mal en pantallas pequeñas */
@media (max-width: 600px) {
    .obj_article_details .abstract {
        text-align: left;
    }
}