                .ql-editor {
                    white-space: normal;
                }
                .news-block .inner-box {
                    height: 430px;           /* altura fija deseada */
                    display: flex;
                    flex-direction: column;
                    overflow: hidden;        /* corta contenido que exceda */
                }
                .news-block .inner-box a{
                    cursor: default;    /* corta contenido que exceda */
                }
                
                .news-block .lower-content {
                    flex: 1 1 auto;          /* ocupa el espacio restante */
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                }

                .trama-fondos {
                    position: relative;
                    z-index: 1;
                }
                
                .trama-fondos::before {
                    content: "";
                    position: absolute;
                    top: 0; left: 0;
                    width: 100%;
                    height: 100%;
                    background-image:  url('../images/background/trama.png');
                    background-size: cover;
                    background-position: center;
                    opacity: 0.5; 
                    z-index: -1;
                }