/* =========================================================
 * Notas relacionadas para Elementor
 * ========================================================= */

.nre { width: 100%; }

.nre__head {
	position: relative;
	margin-bottom: 22px;
	border-bottom: 1px solid #e6e6e6;
}

.nre__heading {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 10px;
	color: inherit;
	line-height: 1.2;
}

.nre__heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50px;
	height: 3px;
	background-color: #d6263a;
}

.nre__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.nre__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background-color: transparent;
}

.nre__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background-color: #eee;
	margin-bottom: 12px;
}

.nre__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.nre__image:hover img { transform: scale(1.05); }

.nre__body { display: flex; flex-direction: column; gap: 6px; }

.nre__cat {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #d6263a;
}

.nre__title {
	margin: 0;
	line-height: 1.3;
}

.nre__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.nre__title a:hover { color: #d6263a; }

.nre__date {
	color: inherit;
}

@media ( max-width: 1024px ) {
	.nre__grid { grid-template-columns: repeat(2, 1fr); }
}

@media ( max-width: 767px ) {
	.nre__grid { grid-template-columns: 1fr; }
}

.nre-empty {
	padding: 20px;
	text-align: center;
	border: 1px dashed #c4c4c4;
	border-radius: 8px;
	color: #777;
	font-size: 0.95rem;
}
