/* Renderiza sem lazy load quando tá dentro de uma listagem */
.archive .block.latest__news {
	content-visibility: visible;
}

/* Título da página */
.list__label{
	color: var(--clr-cnn-grey-3);
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	margin-top: 24px;
	margin-bottom:2px;
}

.latest__news__arrow {
	display: flex;
	align-items: flex-start;
}

.latest__news__arrow img {
	width: 24px;
	height: 24px;
}

.latest__news__page__title{
	margin-top: 0;
	font-size: 24px;
	margin-bottom: 32px;
    color: var(--clr-cnn-grey-4);
}

.latest__news .tags__author__title {
	font-size: 24px;
	margin: 24px 0 0;
}

.tags__topics__title span,
.tags__topics__title strong,
.category__page__title strong {
	color: var(--clr-cnn);
}

.paged .pagination__number {
	color: var(--clr-cnn-grey-3);
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
}



/* Listagem de matérias */
.home__new {
	margin: 0;
	padding: 0;
}

.home__list__item {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0;
	flex-direction: row;
	border-bottom: 1px solid var(--clr-cnn-placeholder)
}

.home__list__item:first-child {
	padding-top: 0;
}

.home__list__tag {
	width: 100%;
	display: grid;
	column-gap: 40px;
	grid-template-rows: auto auto;
	grid-template-columns: 348px 1fr;
}

.home__list__tag figure,
.home__list__tag picture {
	grid-row: span 2;
	height: 201px;
	overflow: hidden;
	position: relative;
	border-radius: 8px;
}

.home__list__tag figure::before,
.home__list__tag picture::before {
	z-index: 2;
	content: "";
	width: 24px;
	height: 12px;
	position: absolute;
	background: var(--accent-color);
}

.home__list__tag img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s ease;
}

.home__list__item .home__list__tag img:hover {
	transform: scale(1.2);
}

.news-item-header__title {
	margin-top: 0;
	color: var(--clr-cnn-grey-4);
	font-size: 18px;
	line-height: 24px;
}

.home__list__item:hover .news-item-header__title {
	text-decoration: underline;
}

.home__title__date {
	align-self: end;
	color: var(--clr-cnn-grey-2)
}

.home__title__date::before {
	content: '';
	width: 16px;
	height: 16px;
	opacity: 0.5;
	margin-right: 8px;
	vertical-align: top;
	display: inline-block;
	background-size: cover;
	background-image: url("/wp-content/themes/master-theme/assets/img/icon-time.svg");
}

@media (max-width: 991px) {
	.home__list__tag {
		display: flex;
		flex-direction: column;
	}

	.home__list__item {
		padding: 32px 0;
	}

	.home__list__tag figure,
	.home__list__tag picture {
		order: 1;
		margin-bottom: 24px;
	}

	.news-item-header__title {
		order: 3;
		margin: 0;
		font-weight: 500;
	}

	.home__title__date {
		order: 2;
		align-self: start;
		margin-bottom: 16px;
	}
}


/* Paginação */
.latest__news__pagination {
	padding: 0;
}
.latest__news__pagination__list {
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: center;
}

.latest__news__page__item {
	margin: 0 16px;
	font-size: 20px;
}

.latest__news__page__item:first-child {
	margin-right: 2px;
	align-items: flex-end;
}

.latest__news__page__item.disabled {
	margin: 0 2px;
	color: #8c8c8c;
}

.latest__news__page__item a {
	color: #8c8c8c;
	cursor: pointer;
	text-decoration: none;
}

.latest__news__page__item.current a {
	color: var(--clr-cnn-grey-5);
	border-bottom: 3px solid;
	border-color: var(--clr-cnn);
}

.latest__news__page__item:first-child a,
.latest__news__page__item.active:last-child a {
	color: var(--clr-cnn-grey-5);
}

.latest__news__page__item img {
	vertical-align: middle;
}

.dark__mode .home__title__date::before,
.dark__mode .latest__news__page__item img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(107%) hue-rotate(260deg) brightness(115%) contrast(96%);
}