.banner{
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: url('../img/banner-noticias.png');
    margin-top: 50px;
}
h1{
    font-size: 60pt;
}
.noticias{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-between;
    grid-gap: 60px 0;
    padding: 40px 20px;
}
.noticias>div{
    width: 90%;
    margin: auto;
    box-shadow: 0px 0px 15px -7px #000;
    border-radius: 10px;
    height: 100%;
    padding-bottom: 20px;
}
.noticias img{
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: -webkit-fill-available;
    object-position: top;
    margin-bottom: 15px;
}
.noticias label{
    padding: 20px 20px 0;
    color: #777777;
}
.noticias h4{
    margin: 0;
    padding: 0 20px;
    color: var(--ituran);
}
.noticias p{
    padding: 0 20px;
}
.noticias a{
    color: var(--azul);
    cursor: pointer;
    padding: 0 20px;
}
.noticias a:hover{
    color: var(--verde);
}
@media(max-width: 820px){
    .noticias {
        grid-template-columns: 100%;
    }
    .banner {
        height: 250px;
        margin-top: 85px;
        padding: 20px;
        text-align: center;
    }
    .banner h1{
        font-size: 34pt;
    }
}