/* Títulos clickeables */
.card-title-link {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    /* sin subrayado por defecto */
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.card-title-link:hover {
    color: blue;
    /* cambia a azul al pasar el mouse */
    text-decoration: underline;
    /* subrayado solo al pasar el mouse */
}

/* Subtítulos más pequeños */
.card-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

/* Ajuste en móviles */
@media screen and (max-width: 600px) {
    .card-title-link {
        font-size: 1.3rem;
    }

    .card-subtitle {
        font-size: 0.9rem;
    }
}


.card-title-link {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.card-title-link:hover {
    color: blue;
    text-decoration: underline;
}

.card-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

@media screen and (max-width: 600px) {
    .card-title-link {
        font-size: 1.2rem;
    }

    .card-subtitle {
        font-size: 0.9rem;
    }
}