@media only screen and (min-width: 1000px) {
    h1 {
        color: #4D4D4C;
        margin-bottom: 30px;
        line-height: 25px;
    }

    #categorias {
        border: 1px solid #CCC;
        color: #808080;
        width: 100%;
        padding: 7px 10px;
        font-size: 1rem;
    }

    /* Grupo de 3 notícias */
    .list-not {
        margin: 0 0 20px;
    }

    .list-not .item {
        float: left;
        width: calc((100% - 25px) / 2);
        height: 235px;
        border: 1px solid #E6E7E8;
        box-shadow: 0 0 25px #f1f1f2;
        margin-top: 25px;
        transition: 0.3s;
    }

    .list-not .item:nth-child(2n) {
        float: right;
    }

    .list-not .item .img {
        float: left;
        width: 275px;
        border: 1px solid #e6e7e8;
        height: calc(100% + 2px);
        margin: -1px 0 0 -1px;
        background: center  / cover no-repeat;
    }

    .list-not .item .textos {
        float: left;
        width: calc(100% - 275px);
        height: 100%;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #727376;
        font-family: Arial, sans-serif;
    }

    .list-not .item .textos:after {
        content: none;
    }

    .list-not .item .textos .titulo {
        height: 75px;
        width: 100%;
        font-weight: bold;
        overflow: hidden;
        font-size: 1.429rem;
    }

    .list-not .item .textos .texto {
        height: 85px;
        width: 100%;
        font-weight: 300;
        overflow: hidden;
        font-size:  0.9286rem;
    }

    .list-not .item:hover {
        box-shadow: 0 0 25px rgba(141, 141, 143, 0.5);
    }

    .paginacao {

        text-align: right;
        display: flex;
        justify-content: center;
    }

    .paginacao a {
        display: inline-block;
        border-radius: 2px;
        padding: 7px 14px;
        margin: 0 11px 0 15px;
        background: rgb(2, 103, 176);
        color: rgb(255, 255, 255);
    }

    .paginacao a:hover {
        background: rgba(2, 103, 176, 0.5);
    }
}

@media only screen and (max-width: 999px) {
    h1 {
        color: #4D4D4C;
        margin-bottom: 30px;
        line-height: 25px;
    }

    #categorias {
        border: 1px solid #CCC;
        color: #808080;
        width: 100%;
        padding: 7px 10px;
    }

    /* Grupo de 3 notícias */
    .list-not {
        margin: 0 0 20px;
    }

    .list-not .item {
        float: left;
        width: 100%;
        height: auto;
        border: 1px solid #E6E7E8;
        box-shadow: 0 0 25px #f1f1f2;
        margin-top: 25px;
        transition: 0.3s;
    }

    .list-not .item:nth-child(2n) {
        float: right;
    }

    .list-not .item .img {
        float: left;
        width: 280px;
        border: 1px solid #e6e7e8;
        height: 180px;
        background: center  / cover no-repeat;
    }

    .list-not .item .textos {
        float: left;
        width: 100%;
        height: 100%;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: #727376;
        font-family: Arial, sans-serif;
    }

    .list-not .item .textos:after {
        content: none;
    }

    .list-not .item .textos .titulo {
        height: 75px;
        width: 100%;
        font-weight: bold;
        overflow: hidden;
        font-size: 20px;
    }

    .list-not .item .textos .texto {
        height: 85px;
        width: 100%;
        font-weight: 300;
        overflow: hidden;
        font-size: 13px;
    }

    .list-not .item:hover {
        box-shadow: 0 0 25px rgba(141, 141, 143, 0.5);
    }

    .paginacao {

        text-align: right;
        display: flex;
        justify-content: center;
    }

    .paginacao a {
        display: inline-block;
        border-radius: 2px;
        padding: 7px 14px;
        margin: 0 11px 0 15px;
        background: rgb(2, 103, 176);
        color: rgb(255, 255, 255);
    }

    .paginacao a:hover {
        background: rgba(2, 103, 176, 0.5);
    }
}
