/* Recuadro para bibliografía con fondo blanco y sombra difuminada */
.biblio-box {
    background-color: #ffffff;
    /* fondo blanco */
    padding: 15px;
    /* espacio interno */
    border-radius: 6px;
    /* esquinas suavemente redondeadas */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* sombra difuminada */
    border: none;
    /* sin borde de color */
}

/* Ajuste de títulos en móviles dentro de bibliografía */

@media only screen and (max-width: 600px) {

    /* Título "Placa: baja" */
    .container h4 {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
    }

    /* Título "Homenaje al Primer Campeonato Sudamericano" */
    .card .card-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
}

/* Estilos generales (PC / escritorio) */
h4 {
    font-size: 1.6rem;
}

.card-title {
    font-size: 1.4rem;
}

/* Tablets (pantallas entre 600px y 992px) */
@media only screen and (min-width: 600px) and (max-width: 992px) {
    h4 {
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/* Móviles (pantallas hasta 600px) */
@media only screen and (max-width: 600px) {
    h4 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .card-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }
}