.mw-BlocoDiaDaMulher {
    display: flex;
    flex-direction: column;
    grid-column: span 8;
    grid-row: span 2;
}

.mw-BlocoDiaDaMulher > header {
    width: 100%;
    height: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.mw-BlocoDiaDaMulher > header > h2 {
    font-family: "NunitoSans-ExtraBold";
    font-size: 40px;
    line-height: 18px;
    letter-spacing: -0.8px;
    color: #CA06A3;
    white-space: nowrap;
}
.mw-BlocoDiaDaMulher > header > div {
    width: 100%;
    height: 1px;
    background-color: #CA06A3;
}
.mw-BlocoDiaDaMulher > header > a {
    font-family: "NunitoSans-SemiBold";
    font-size: 16px;
    line-height: 22px;
    color: #2E2E2E;
    white-space: nowrap;
    padding: 6px 18px;
    border: 1px solid #CA06A3;
    border-radius: 19px;
}
.mw-BlocoDiaDaMulher > article {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 9px;
}
.mw-BlocoDiaDaMulher > article > a > figure {
    width: 282px;
    height: 180px;
    object-fit: cover;
}
.mw-BlocoDiaDaMulher > article > a > figure > img {
    width: 281px !important;
    height: inherit;
    border-radius: 15px;
    object-fit: cover;
}
.mw-BlocoDiaDaMulher > article > a > h3 {
    color:#CA06A3 !important;
    padding: 3px 15px;
    font-size: 13px;
    line-height: 50px;
    
}
.mw-BlocoDiaDaMulher > article > a > h2 {
    margin-top: 2px;
    font-family: "NunitoSans-Black";
    font-size: 20px;
    line-height: 24px;
    color: #4A4A4A;
    text-align: left;
}
@media screen and (max-width:1024px) {
    .mw-BlocoDiaDaMulher {
        grid-column: span 2;
        grid-row: span 7;
        justify-content: space-evenly;
    }
    .mw-BlocoDiaDaMulher > header {
        gap: 15px;
    }
    .mw-BlocoDiaDaMulher > header > h2 {
        font-size: 28px;
        letter-spacing: -0.56px;
    }
    .mw-BlocoDiaDaMulher > header > div {
        display: none;
    }
    .mw-BlocoDiaDaMulher > header > a {
        font-family: "NunitoSans-Bold";
        font-size: 12px;
        padding: 4px 12px;
    }
    .mw-BlocoDiaDaMulher > article {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin: unset;
    }
    .mw-BlocoDiaDaMulher > article > a {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 2px solid #9e9e9e66;
    }
    .mw-BlocoDiaDaMulher > article > a > figure {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .mw-BlocoDiaDaMulher > article > a > figure > img {
        width: 90vw !important;
        height: 249px;
        border-radius: 15px;
        object-fit: cover;
    }
}