/* ---- Section d'accueil : Hero + liste éditoriale ---- */
.nt-home {
	background: var(--nt-color-header);
	color: var(--nt-color-text);
}
.nt-home__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 var(--nt-gutter);
}

/* Fine ligne grise entre le carrousel et la section (même style que les
   séparateurs de lignes d'articles). */
.nt-sep {
	height: 0;
	border: 0;
	border-top: 1px solid var(--nt-color-border);
	opacity: 0.6;
	margin: 0 0 calc(var(--nt-gutter) * 1.25);
}

.nt-home__grid {
	display: block;
	padding-bottom: calc(var(--nt-gutter) * 1.75);
}

/* ---- Hero ---- */
.nt-hero {
	position: relative;
	display: block;
	overflow: hidden;
	isolation: isolate;
	aspect-ratio: 11 / 5;
	min-height: 172px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--nt-radius-card);
	background: radial-gradient(120% 95% at 50% 34%, #14285f 0%, #0b1c4c 55%, #05123a 100%);
	color: var(--nt-color-text);
	text-decoration: none;
}
.nt-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 82%;
	display: block;
	z-index: 0;
}
.nt-hero__img--placeholder {
	background: transparent; /* le fond bleu du Hero reste visible */
}
.nt-hero__scrim {
	position: absolute;
	inset: auto 0 0 0;
	height: 62%;
	z-index: 1;
	background: linear-gradient(to top, rgba(3, 10, 32, 0.9) 0%, rgba(3, 10, 32, 0.45) 45%, rgba(3, 10, 32, 0) 100%);
	pointer-events: none;
}
.nt-hero__title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: var(--nt-gutter);
	font-size: clamp(1.15rem, 4.2vw, 1.45rem);
	font-weight: 600;
	line-height: 1.16;
}
.nt-hero:hover { border-color: rgba(255, 255, 255, 0.18); }

/* ---- Liste d'articles ---- */
.nt-articles { margin-top: calc(var(--nt-gutter) * 1.25); }
.nt-articles__title { display: none; } /* masqué en mobile (identique au modèle) */
.nt-articles__list { list-style: none; margin: 0; padding: 0; }

.nt-article + .nt-article { border-top: 1px solid var(--nt-color-border); }
.nt-article__link {
	display: flex;
	align-items: center;
	gap: calc(var(--nt-gutter) * 0.85);
	padding: calc(var(--nt-gutter) * 0.6) 0;
	color: var(--nt-color-text);
	text-decoration: none;
}
.nt-article__thumb {
	flex: 0 0 auto;
	width: clamp(84px, 25vw, 104px);
	aspect-ratio: 16 / 10;
	border-radius: 10px;
	overflow: hidden;
	background: var(--nt-color-surface);
	display: block;
}
.nt-article__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nt-article__title {
	font-size: clamp(0.95rem, 3.2vw, 1.05rem);
	font-weight: 500;
	line-height: 1.3;
}
.nt-article__link:hover .nt-article__title { color: #fff; }

/* ---- Desktop : Hero à gauche, colonne d'articles à droite ---- */
@media (min-width: 1024px) {
	.nt-home__grid {
		display: grid;
		grid-template-columns: 1.7fr 1fr;
		gap: 28px;
		align-items: stretch;
		padding-bottom: 40px;
	}
	.nt-hero {
		aspect-ratio: auto;
		height: 100%;
		min-height: 420px;
	}
	.nt-hero__img { object-position: center 50%; }
	.nt-hero__title {
		padding: 24px;
		font-size: clamp(1.6rem, 2.2vw, 2.15rem);
	}
	.nt-articles {
		margin-top: 0;
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid var(--nt-color-border);
		border-radius: var(--nt-radius-card);
		padding: 18px 22px 6px;
	}
	.nt-articles__title {
		display: block;
		margin: 0 0 6px;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.2;
	}
	.nt-article__link { padding: 14px 0; }
	.nt-article__thumb { width: 132px; }
	.nt-article__title { font-size: 1.15rem; }
}
