.mw-manchetePadrao {
    grid-column: 1/-1;
    grid-row: span 2;
    font-family: "NunitoSans-Black";
    /* border-top: 1px solid #c4c4c4; */
    border-bottom: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mw-manchetePadrao a {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 100%;
    width: 100%;
}

.mw-manchetePadrao .mw-manchetePadrao-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    grid-column: span 2;
}

.mw-manchetePadrao .mw-manchetePadrao-text .mw-manchetePadrao-title {
    font-family: 'NunitoSans-Black';
    font-size: 14px;
}

.mw-manchetePadrao a figure {
    height: 100%;
    grid-column: span 2;
    border-radius: 20px;
    overflow: hidden;
    padding-left: 10px;
    width: 100%;
}

.mw-manchetePadrao a figure img {
    width: inherit;
    border-radius: 20px;
    height: inherit;
    animation: fadein 2s;
    transition: 0.3s;
}



.mw-manchetePadrao a figure>img:hover {
    filter: brightness(110%);
    transform: scale(1.01);
}

.mw-manchetePadrao a h2 {
    font-family: 'NunitoSans-Black';
    font-size: 45px;
    line-height: 49px;
    color: #4A4A4A;
    width: 95%;
}

.mw-manchetePadrao a h3 {
    font-size: 18px;
    line-height: 22px;
    font-family: 'NunitoSans-SemiBold';
    color: #696A6C;
    width: 95%;
}
@media (max-width:1024px){
    .mw-manchetePadrao a{
        grid-template-columns: 1fr;
        grid-template-rows: 190px;
        overflow: hidden;
    }
    .mw-manchetePadrao a figure{
        grid-row: 1;
        padding-left: unset;
        width: 100%;
    }
    .mw-manchetePadrao a h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .mw-manchetePadrao .mw-manchetePadrao-text {
        padding-top: 20px;
    }
    .mw-manchetePadrao .mw-manchetePadrao-text .mw-manchetePadrao-title {
        display: block;
    }
    .mw-manchetePadrao a h3{
        display: none;
    }

  }
