/* ---- Section d'accueil : highlights + dernières nouvelles ----
   Section CLAIRE (fond blanc cassé), en rupture avec le haut de page foncé,
   conformément au modèle : titre bleu, cartes image + titre intégré, bouton rouge. */
.nt-hl {
	--nt-hl-bg: #f0f0f8;
	--nt-hl-title: #17233f;   /* bleu foncé (titres de section) */
	--nt-hl-red: #ce302b;     /* rouge du bouton « voir tout »  */
	background: var(--nt-hl-bg);
	color: var(--nt-hl-title);
}
.nt-hl__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: calc(var(--nt-gutter) * 1.5) var(--nt-gutter) calc(var(--nt-gutter) * 2.25);
}

.nt-hl__stack {
	display: flex;
	flex-direction: column;
	gap: var(--nt-gutter);
}

.nt-hl__heading {
	margin: calc(var(--nt-gutter) * 1.6) 0 var(--nt-gutter);
	color: var(--nt-hl-title);
	font-size: clamp(1.35rem, 5vw, 1.65rem);
	font-weight: 700;
	line-height: 1.15;
}
/* Titre en tête de section : pas de marge haute (l'inner gère le retrait). */
.nt-hl__heading--top { margin-top: 0; }

/* Second groupe de cartes : espace de séparation avec le groupe précédent. */
.nt-hl__stack--next { margin-top: calc(var(--nt-gutter) * 1.6); }

.nt-hl__seeall {
	display: block;
	text-align: center;
	margin-top: calc(var(--nt-gutter) * 1.25);
	padding: 0.95rem 1rem;
	border: 1px solid var(--nt-hl-red);
	border-radius: 12px;
	background: transparent;
	color: var(--nt-hl-red);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05rem;
}
.nt-hl__seeall:hover { background: rgba(206, 48, 43, 0.06); }

/* ---- Carte highlight (image sombre + titre intégré) ---- */
.nt-hl-card {
	position: relative;
	display: block;
	overflow: hidden;
	isolation: isolate;
	aspect-ratio: 16 / 9;
	border-radius: var(--nt-radius-card);
	background: #0c111c;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(18, 24, 44, 0.14);
}
.nt-hl-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	z-index: 0;
}
.nt-hl-card__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(3, 8, 18, 0.85) 0%, rgba(3, 8, 18, 0.2) 45%, rgba(3, 8, 18, 0.35) 100%);
	pointer-events: none;
}
.nt-hl-card__title {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	max-width: 68%;
	padding: var(--nt-gutter);
	font-size: clamp(1.2rem, 4.6vw, 1.5rem);
	font-weight: 700;
	line-height: 1.12;
}
.nt-hl-card__tag {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: var(--nt-gutter);
	max-width: 40%;
	text-align: right;
	font-size: clamp(0.95rem, 3.4vw, 1.05rem);
	line-height: 1.15;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
}
.nt-hl-card__cta {
	position: absolute;
	right: var(--nt-gutter);
	bottom: var(--nt-gutter);
	z-index: 2;
	padding: 0.55rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.95rem;
}
.nt-hl-card:hover .nt-hl-card__cta { background: rgba(255, 255, 255, 0.12); }

/* ---- Desktop ---- */
@media (min-width: 1024px) {
	.nt-hl__stack {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
	.nt-hl__heading { font-size: 1.65rem; }
	.nt-hl__seeall {
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}
	.nt-hl-card__title { font-size: 1.3rem; }
}
