/* ---- Section d'accueil : « En portada » (carrousel de vidéos, fond clair) ----
   Version claire du carrousel vidéo : cartes blanches, titre bleu foncé,
   bouton rouge. */
.nt-featured {
	--nt-f-bg: #f0f0f8;
	--nt-f-title: #17233f;
	--nt-f-red: #ce302b;
	background: var(--nt-f-bg);
	color: var(--nt-f-title);
}
.nt-featured__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: calc(var(--nt-gutter) * 1.5) 0 calc(var(--nt-gutter) * 2.25);
}
.nt-featured__title {
	margin: 0 0 var(--nt-gutter);
	padding: 0 var(--nt-gutter);
	color: var(--nt-f-title);
	font-size: clamp(1.5rem, 6vw, 1.9rem);
	font-weight: 800;
	line-height: 1.1;
}

/* Piste horizontale */
.nt-featured__track {
	display: flex;
	gap: var(--nt-gutter);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 0 var(--nt-gutter) 4px;
	scrollbar-width: none;
}
.nt-featured__track::-webkit-scrollbar { display: none; }

/* Carte */
.nt-feat-card {
	flex: 0 0 clamp(280px, 86vw, 460px);
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--nt-radius-card);
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(18, 24, 44, 0.08);
	color: var(--nt-f-title);
	text-decoration: none;
}
.nt-feat-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: #0f1626;
	overflow: hidden;
}
.nt-feat-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nt-feat-card__meta {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.nt-feat-card__duration { font-size: 1rem; font-weight: 600; }
.nt-feat-card__play { display: inline-flex; }

.nt-feat-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: var(--nt-gutter);
}
.nt-feat-card__date { color: #8b93a6; font-size: 0.95rem; }
.nt-feat-card__cardtitle {
	font-size: clamp(1.2rem, 4.6vw, 1.5rem);
	font-weight: 700;
	line-height: 1.18;
	color: var(--nt-f-title);
}

/* Bouton « Ver todos los vídeos » (rouge) */
.nt-featured__seeall {
	display: block;
	margin: calc(var(--nt-gutter) * 1.25) var(--nt-gutter) 0;
	padding: 0.95rem 1rem;
	text-align: center;
	border: 1px solid var(--nt-f-red);
	border-radius: 12px;
	background: transparent;
	color: var(--nt-f-red);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
}
.nt-featured__seeall:hover { background: rgba(206, 48, 43, 0.06); }

/* ---- Desktop ---- */
@media (min-width: 1024px) {
	.nt-featured__track {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		overflow: visible;
		padding: 0 var(--nt-gutter);
	}
	.nt-feat-card { flex: initial; }
	.nt-feat-card__cardtitle { font-size: 1.3rem; }
	.nt-featured__seeall { max-width: 360px; margin-left: auto; margin-right: auto; }
}
