.ultimasNoticias-page {
    width: 100%;
    height: 120px;
    background-color: var(--defaultBlue);
    margin-bottom: 20px;
}
.ultimasNoticias-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
}
.ultimasNoticias-header-wrapper h2{
    font-size: 25px;
    line-height: 29px;
    font-family: "NunitoSans-Bold";
    color:#fff;
    transition: 0.2s;
}
.ton-ultimasNoticias-content {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 180px;
    gap: 20px;
}
.ton-ultimasNoticias-content .chamadaHome {
    grid-column: span 2;
}

@media (max-width:1000px){
    .ton-ultimasNoticias-content {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 180px;
        gap: 20px;
    }
}
