@import url(../../css/cards/news-card.css);
.calico-noticias {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 40vw;
}

.calico-noticias .title {
    margin-bottom: calc(var(--x) * 1.5) !important;
}

.gallery {
    width: 100%;
    display: grid;
    gap: var(--x);
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    margin-bottom:var(--x) ;
}

.calico-noticias>a{
    display: inline-block;
    margin: auto;
}

@media screen and (max-width:1083px) {
    .gallery {        
        justify-content: center;
    }
}


@media screen and (max-width:1100px) and (min-width:720px) {
    .gallery {        
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    .calico-card-news:last-child{
        max-width: 420px;
        grid-column-start: 1;
        grid-column-end: 3;
    }
}



@media screen and (max-width:720px) {
    .gallery {        
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
}
