.news {
    max-width: 250px;
    font-size: 16px;
}

.card-body {
    color: var(--primary_50);
}

#result {
    display: none
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 30px
}

    .pagination a {
        color: #000;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
        border: 1px solid #ddd;
        cursor: pointer;
        align-items: center
    }

        .pagination a:hover {
            background: var(--primary_50);
            color: var(--gray-20);
        }

a.page.current {
    background: var(--primary_100);
    color: var(--gray-20);
}

.data-news {
    width: 80%;
    margin: 20px auto;
    font-size: 15px;
    color: #007cb3 !important;
    font-weight: 700
}

.news a {
    color: #195d87 !important
}

.filtro {
    padding: 30px;
    width: 400px;
    background: #FCFAF1;
    box-shadow: 0 8px 8px rgb(0 0 0 / 16%);
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #6D6D6D
}

/* Media query para pantallas de 460px o menos */
@media (max-width: 590px) {
    .news{
        font-size:13px;        
    }

    .filtro {
        width:98%;
        font-size:14px;
    } 
}

/*-------------SECCION NOTICIAS----------------*/
.card .card-header .w-100 {
    min-height: 100px;
    max-height: 150px;
    height: auto;
}

.card-body {
    height: 300px !important;
    overflow: hidden;
}

.card-header-img {
    height: 105px !important;
    width: 100% !important; /* Se expandirá al máximo del contenedor padre */
    object-fit: cover; /* Ajusta la imagen sin distorsionarla */
}