/* Título centrado arriba */
.qq-biblio-titulo-fuera {
    display: block;
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
}

/* Recuadro con borde marrón y esquinas curvas */
.qq-biblio-recuadro-marron {
    border: 1.5px solid #8B4513;
    /* Color marrón del borde */
    border-radius: 20px;
    /* Esquinas curvas */
    padding: 30px;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ítems con la barrita marrón a la izquierda */
.qq-biblio-item {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 1px solid #8B4513;
    /* La barrita lateral */
    text-align: left;
}

/* Quitar margen al último ítem */
.qq-biblio-item:last-child {
    margin-bottom: 0;
}

/* Enlaces en azul con subrayado al pasar el mouse */
.qq-biblio-item a {
    color: #0000FF;
    text-decoration: none;
}

.qq-biblio-item a:hover {
    text-decoration: underline;
}

/* --- AJUSTES PARA CELULAR --- */
@media (max-width: 768px) {
    .qq-biblio-recuadro-marron {
        width: 95% !important;
        padding: 20px !important;
    }

    .qq-biblio-item {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .qq-biblio-titulo-fuera {
        font-size: 18px !important;
        padding: 0 10px;
    }

    .fuente {
        font-size: 13px !important;
        line-height: 1.4;
    }
}