.barra-icones {
    background: url('/assets/images/barra_de_icones.png') repeat-x top left;
    background-size: auto 40px;
    height: 40px;
}

/* Paginação */
ul.pagination {
    display: flex;
    justify-content: center;
    margin: 50px auto;

    li {
        border: 1px solid #E1E7EF;
        margin-right: 4px;
        border-radius: 8px;

        a,
        &.active span,
        &.disabled span {
            display: block;
            padding: 7px 15px;
            text-decoration: none;
            color: #333;
        }

        &.active {
            background: var(--pv-blue);
            border-color: var(--pv-blue);

            span {
                color: white;
            }
        }

        &:not(.active, .disabled):hover {
            border-color: #bbb;
        }

        &.disabled {
            border-color: transparent;
            cursor: default;
        }
    }
}

/* Notícia */
article.noticia .prose {
    p {
        margin-bottom: 15px;
        text-align: justify;
    }

    img {
        width: 400px !important;
        height: auto !important;
        margin: 0 !important;
    }

    img[style*='float:right'],
    img[style*='float: right']{
        margin-left: 15px !important;
    }

    img[style*='float:left'],
    img[style*='float: left']{
        margin-right: 15px !important;
    }
}