.mw-maisLidas {
    display: flex;
    flex-direction: column;
    grid-column: span 8;
    grid-row: span 2;
}

.mais-lidas-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap:20px;
}

.mais-lidas-title h2 {
    font-size: 20px;
    line-height: 24px;
    font-family: "NunitoSans-Black";
    color: #4a4a4a;
    text-transform: uppercase;
    white-space: nowrap;
}
.maislidas-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header-line {
    width: 100%;
    background-color: #6c6c6c;
    opacity: 0.2;
    height: 1px;
}

.mais-lidas-btn {
    border: 2.5px solid #b7b7b7;
    border-radius: 24px;
    padding: 10px 18px;
}

.mais-lidas-btn a {
    text-decoration: none;
    font-weight: bold;
    color: #6c6c6c;
    opacity: 0.8;
    width: 100%;
    font-size: 17px;
    white-space: nowrap;
}

.mw-maisLidas-articles {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

}

.mw-maisLidas-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.mw-maisLidas-card figure {
    width: inherit;
    height: 185px;
}

.mw-maisLidas-card figure img {
    width: 285px !important;
    height: 185px !important;
    border-radius: 25px;
    object-fit: cover;
}

.mw-maisLidas-card h2 {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 24px;
    text-align: left;
    font-family: "NunitoSans-Black";
    overflow: hidden;
    text-overflow: ellipsis;
 

}

.mw-maisLidas-card span {
    color: #9e9a99;
    font-size: 25px;
    font-family: "NunitoSans-Black";
    align-self: flex-start;
}


@media (max-width:1024px){
    .mw-maisLidas {
        grid-column: span 2;
        grid-row: span 7;
        justify-content: center;
    }
    .mw-maisLidas-articles{
        flex-direction: column;
    }
    .maislidas-wrapper {
        flex-direction: row;
    }
    .mw-maisLidas-card figure img {
        width: 90vw !important;
        height: 185px !important;
        border-radius: 25px;
        object-fit: cover;
    }
  }
@media screen and (max-width: 550px) {
    .mw-maisLidas-card figure {
        width: 100%!important;
        height: fit-content;
        aspect-ratio: 1.6;
    }
    .mw-maisLidas-card figure img {
        width: 100% !important;
        height: 100% !important;
    }
}