/* =========================================================
 * Tiles de categorías con imagen
 * ========================================================= */
.nct {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	width: 100%;
}

.nct__tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	padding: 0 18px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: #33373f;
	text-decoration: none;
}

.nct__tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.45);
	transition: background-color 0.25s ease;
}

.nct__tile:hover::after {
	background-color: rgba(214,38,58,0.65);
}

.nct__name,
.nct__arrow {
	position: relative;
	z-index: 2;
	color: #ffffff;
}

.nct__name {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
}

.nct__count {
	font-weight: 400;
	opacity: 0.8;
	font-size: 0.85em;
}

.nct__arrow {
	display: inline-flex;
	transition: transform 0.25s ease;
}

.nct__tile:hover .nct__arrow {
	transform: translateX(4px);
}

.nct-empty { padding: 18px; text-align: center; border: 1px dashed #c4c4c4; border-radius: 8px; color: #777; }
