/* =========================================================
 * Pestañas de noticias para Elementor
 * ========================================================= */

.nta { width: 100%; }

.nta__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 16px;
}

.nta__tab {
	flex: 1 1 auto;
	border: none;
	cursor: pointer;
	padding: 11px 16px;
	background-color: #f2f2f2;
	color: #888888;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nta__tab.is-active {
	background-color: #d6263a;
	color: #ffffff;
}

/* Paneles */
.nta__panel { display: none; }
.nta__panel.is-active { display: block; }

.nta__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nta__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid #eeeeee;
}

.nta__item:last-child { border-bottom: none; }

.nta__thumb {
	flex: 0 0 auto;
	display: block;
	width: 64px;
	height: 64px;
	overflow: hidden;
	background-color: #eee;
}

.nta__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nta__body { flex: 1 1 auto; min-width: 0; }

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

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

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

.nta__date {
	display: block;
	margin-top: 5px;
	color: inherit;
}

.nta__empty {
	color: #999;
	font-size: 0.9rem;
	padding: 10px 0;
}
