.box-min-title {
    text-align: left;
    font-size: 1.6rem;
    padding: 0rem 0.5rem;
    margin-left: 45%;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

@media screen and (max-width: 460px) {
    .box-min-title {
        margin-left: 15% !important;
        font-size: 1.05rem;
        margin-top: 1rem;
    }
}
/* 1. Forzamos a que el contenedor alinee el inicio del texto en la misma línea */
.texto-continuo {
    display: block;
    color: #ffffff;
}

/* 2. Juntamos el primer párrafo y el primer h3 en la misma línea */
.texto-continuo p:first-of-type,
.texto-continuo h3:first-of-type,
.texto-continuo h3:first-of-type + p {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
}

/* 3. Damos espacio horizontal al h3 para que respire */
.texto-continuo h3:first-of-type {
    margin: 0 6px !important;
}

/* 4. EL TRUCO MAESTRO: Forzamos a que el SEGUNDO párrafo en adelante 
   vuelva a ser un bloque normal y salte de línea sí o sí */
.texto-continuo h3:first-of-type + p + p,
.texto-continuo p:first-of-type ~ p:not(h3:first-of-type + p) {
    display: block !important;
    margin-top: 15px !important; /* El margen que quieras para separar los párrafos normales */
    margin-bottom: 15px !important;
}
