.mw-home-container{
    max-width: 1200px;
    margin: 0 auto;
    min-width: 1000px;
}

.mw-area{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    grid-auto-rows: 150px;
    margin-top:20px;
    margin-bottom: 20px;
}
.mw-area-category{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    grid-auto-rows: 175px;
    margin-top:20px;
    margin-bottom: 20px;
}
.mw-area-ads{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
    margin-bottom: 20px;
}

/* PAGINAÇÃO */
.mw-category-pages-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #101010;
}
button.mw-page-circle.mw-page-circle-selected {
    padding: 10px;
    font-weight: bold;
    margin: 0 5px;
}
button.mw-page-circle:hover{
    background: #dad687;
}
button.mw-page-circle {
    padding: 10px;
    background: white;
    color: black;
    font-weight: bold;
    margin: 0 5px;
    transition: 0.5s;
}
button.mw-rounded-btn:hover{
    background: #dad687;
}
label.mw-pages-label {
    display: none;
}
button.mw-rounded-btn{
    padding: 10px;
    background: white;
    color: black;
    font-weight: bold;
    margin: 0 5px;
    transition: 0.5s;
}

#carregar-mais {
    margin: 0 auto;
    cursor: pointer;
    padding: 0px 10px 0px 10px;
    border-radius: 6px;
    line-height: 37px;
    color: #727070;
    font-family: "GuardianSans-Regular";
    font-size: 16px;
    border: 1px solid #727070;
}
#carregar-mais:hover {
    color: #000000;
    background-color: #f1e723;
}



@media (max-width:1024px){
    .mw-area {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        grid-auto-rows: 150px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}