/* BLOCO MANCHETE */
.block--headlines .block__title {
    color: #fff;
    font-size: 14px;
    padding: 4px 20px;
    border-radius: 4px;
    line-height: 22.5px;
    display: inline-block;
    background-color: var(--accent-color);
}

.block--headlines .block__title::after {
    display: none;
}

/* Faz a listagem das matérias ter duas colunas */
.block--headlines .block__news__list {
    column-count: 2;
    column-gap: 32px;
    overflow: hidden;
}

.block--headlines .block__news__item {
    margin-bottom: 0;
    border-bottom: 0;
}

.block--headlines .block__news__item > a::before {
    width: 32px;
    height: 16px;
}

.block--headlines .block__news__item:not(:nth-last-child(2)) {
    border: none;
}

.block--headlines .block__news__item:not(:nth-last-child(2))::after {
    content: "";
    display: block;
    margin-top: 20px;
    border-bottom: 1px solid var(--clr-cnn-grey-1);
}

.block--headlines .block__news__title {
    font-size: 18px;
}

.block--headlines .block__news__thumb img {
    width: 314px;
    height: 185px;
    margin-top: -16px;
}

.block--headlines .has--video .block__news__thumb::before {
    top: 92px;
}

.block__news__item.has--thumb + .block__news__item.has--thumb a.has--thumb {
    margin-top: 24px;
    display: block;
}

@media(min-width: 992px) {
    .block--headlines .block__read__more {
        padding-top: 20px;
    }
}

@media(max-width:991px){
    .block--headlines .block__read__more {
        margin-bottom: 24px;
    }

    .block--headlines .block__news__list {
        column-count: 1;
        overflow: inherit;
    }

    .block--headlines .block__news__list ul.block__news__list {
        margin: 0 -16px;
    }

    .block--headlines .block__news__title {
        font-weight: 700;
    }

    .block--headlines .block__news__thumb img {
        height: 219px;
        border-radius: 0;
        min-width: 100vw;
        margin: 4px 0 8px -24px;
    }

    .block--headlines .has--video .block__news__thumb::before {
        top: 188px;
    }

    .block--headlines .block__news__item > .has--thumb::before {
        display: none;
    }

    .block--headlines .block__news__item .has--thumb figcaption {
        position: relative;
    }

    .block--headlines .block__news__item .has--thumb figcaption::before {
        position: absolute;
        bottom: -20px;
        left: -24px;
        content: '';
        width: 32px;
        height: 16px;
        background-color: var(--accent-color);
        display: block;
    }

    .block--headlines .block__news__thumb {
        display: flex;
        flex-direction: column-reverse;
    }
}


/* Nome do Autor da Materia */
.autor_home_block {
    color: #0C0C0C;
    font-size: 14px;
    line-height: 18px;
    display: block;
    letter-spacing: -0.225px;
}

.block__news__thumb .autor_home_block {
    margin-top: 13px;
}

.block__news__related__list .autor_home_block {
    padding-left: 22px;
}

.autor_home_block a {
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}

.autor_home_block a:hover {
    color: #cc0000;
}

.block__news__item .autor_home_block::before,
figure.block__news__thumb>a::before {
    content: '';
    display: block;
    position: relative;
    width: 32px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.block__news__item .autor_home_block::before {
    margin-bottom: 13px;
}

.block__news__thumb .autor_home_block::before {
    margin-top: 13px;
}

.autor_home_block ~ a .block__news__title::before {
    top: -28px;
}

.block__news__item .autor_home_block ~ a::before,
.block__news__related__list .autor_home_block::before,
.block__news__thumb .autor_home_block::before    {
    display: none;
}

@media(max-width: 991px) {
    .block__news__item .block__news__thumb>a::before {
        display: none;
    }
}