/* =========================================================================
   GABARIT ARTICLE DE BLOG — feuille de style du gabarit « Article blog »,
   appliquée telle quelle sur les classes du contenu (.contenu_blog, .containerh1,
   .chapo, .astuce, .btn-action, .partage, .container-flex-blog-article…).
   Réutilise les tokens --k-* du socle. Le corps vient de la base (db_blog),
   échafaudage legacy retiré, sans exécution PHP.
   ========================================================================= */

/* le halo couvre le titre ET le chapô : ils forment un seul bloc d'ouverture */
.contenu_blog {
	font-family: var(--k-font-body);
	color: var(--k-charcoal);
	/* Pas de -webkit-font-smoothing: antialiased — c'était le SEUL endroit du site
	   à l'imposer, ce qui amincissait le texte et baissait le contraste ressenti
	   des articles. On garde le rendu (plus dense) des autres pages. */
	background-repeat: no-repeat;
	background-size: 100% 480px;
	background-image:
		radial-gradient(90% 90% at 92% -6%, rgba(242, 150, 68, 0.16) 0%, rgba(242, 150, 68, 0) 58%),
		radial-gradient(120% 100% at 84% 0%, var(--k-hero-tint) 0%, var(--k-bg) 70%);
}

/* ---------- En-tête de page ---------- */
.contenu_blog .containerh1 {
	background: none;
	border-bottom: none;
	padding: clamp(20px, 3vw, 32px) clamp(16px, 4vw, 40px) 0;
}
/* mot-clé en orange : entourer le mot d'un <span> (ou <em>) dans le H1 */
.contenu_blog .containerh1 h1 span,
.contenu_blog .containerh1 h1 em { color: var(--k-orange); font-style: normal; }
.contenu_blog .containerh1 h1 {
	max-width: 760px;
	margin: 0 auto;
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: clamp(27px, 4.2vw, 43px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--k-charcoal);
	text-wrap: pretty;
}
.contenu_blog .fil-ariane {
	max-width: 760px;
	margin: 0 auto 14px;
	display: block;
	list-style: none;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--k-faint);
}
/* Flux de texte CONTINU (pas de flex) : le titre courant s'écrit à la suite de
   « Accueil › Blog › » et ne déborde sur la ligne suivante QUE mot à mot — pas de
   saut du titre entier, pas de troncature. Le flex rendrait chaque item insécable. */
.contenu_blog .fil-ariane li { display: inline; }
.contenu_blog .fil-ariane .fil-cur { display: inline; }
.contenu_blog .fil-ariane li + li::before { content: "\203A"; margin: 0 7px; color: #C3B6A2; }
/* Lien crawlable OU bouton obfusqué (règle projet : fil d'Ariane = bouton) : même rendu. */
.contenu_blog .fil-ariane a,
.contenu_blog .fil-ariane button {
	color: var(--k-faint);
	text-decoration: none;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
}
.contenu_blog .fil-ariane a:hover,
.contenu_blog .fil-ariane button:hover { color: var(--k-orange-dark); }
.contenu_blog .fil-ariane li:last-child { color: var(--k-nav); }
.contenu_blog .maj-wrap { max-width: 760px; margin: 0 auto 12px; }
.contenu_blog .maj {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	border: 1px solid var(--k-border-warm);
	border-radius: 999px;
	padding: 5px 13px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--k-soft);
}
.contenu_blog .maj svg { color: var(--k-orange); }

/* ---------- Colonne de lecture ---------- */
.contenu_blog .main {
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(18px, 2.4vw, 26px) clamp(16px, 4vw, 40px) clamp(40px, 5vw, 64px);
}
.main_article-blog { max-width: 760px; margin: 0 auto; font-size: 17.5px; line-height: 1.8; }
.main_article-blog > p { margin: 0 0 22px; text-wrap: pretty; }
/* Liens du corps : IDENTIQUES aux liens « en savoir plus » du site (.kk-inline-link) :
   orange, gras, SANS soulignement permanent — souligné seulement au survol. */
.main_article-blog a {
	color: var(--k-orange-dark);
	font-weight: 700;
	text-decoration: none;
}
.main_article-blog a:hover { text-decoration: underline; }
.main_article-blog ::selection { background: #FBE0BE; }

/* ---------- Barre d'actions (résumé IA / suivre / partager) ---------- */
.barre-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 26px; }
.barre-actions button,
.barre-actions > a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #fff;
	border: 1px solid #E3D7C5;
	border-radius: 999px;
	padding: 11px 18px;
	font-family: var(--k-font-title);
	font-weight: 700;
	font-size: 14.5px;
	color: var(--k-charcoal);
	cursor: pointer;
	text-decoration: none;
	transition: border-color .14s, box-shadow .14s, transform .14s;
}
.barre-actions button:hover,
.barre-actions > a:hover {
	border-color: var(--k-orange);
	box-shadow: 0 8px 18px -12px rgba(40, 30, 15, 0.4);
	transform: translateY(-1px);
}
.barre-actions button[aria-expanded="true"] {
	border-color: var(--k-orange);
	background: var(--k-orange-tint);
	color: var(--k-orange-dark);
}
.barre-actions__ico { display: inline-flex; flex: none; }
/* Petits mobiles (< 414px) : badges plus compacts pour tenir 2 par ligne. */
@media (max-width: 414px) {
	.barre-actions { gap: 8px; }
	.barre-actions button,
	.barre-actions > a { padding: 9px 12px; font-size: 13px; gap: 7px; }
}

/* ---------- Pop-up « Résumer cet article avec » ---------- */
@keyframes iaFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes iaPop { from { opacity: 0; transform: translateY(14px) scale(.97) } to { opacity: 1; transform: none } }
.ia-overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: var(--k-overlay);
	animation: iaFade .18s ease forwards;
}
.ia-overlay[hidden] { display: none; }
.ia-modal {
	position: relative;
	width: min(100%, 468px);
	max-height: 86vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 24px;
	padding: clamp(22px, 3vw, 30px);
	box-shadow: 0 40px 80px -30px rgba(20, 24, 32, 0.55);
	animation: iaPop .22s cubic-bezier(.22, .61, .36, 1) forwards;
}
.ia-modal__title {
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -0.01em;
	color: var(--k-charcoal);
	margin: 0 0 18px;
	padding-right: 44px;
}
.ia-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 11px;
	background: var(--k-bg-alt);
	border: 1px solid var(--k-border);
	color: var(--k-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .14s, color .14s;
}
.ia-modal__close:hover { background: var(--k-orange); border-color: var(--k-orange); color: #fff; }
.ia-list { display: flex; flex-direction: column; gap: 9px; }
.ia-list a,
.ia-list button {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	background: #FBFAF8;
	border: 1px solid var(--k-border);
	border-radius: 15px;
	padding: 14px 16px;
	font-family: var(--k-font-title);
	font-weight: 700;
	font-size: 16px;
	color: var(--k-charcoal);
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color .14s, background .14s, transform .14s;
}
.ia-list a:hover,
.ia-list button:hover { border-color: var(--k-orange); background: #fff; transform: translateY(-1px); }
.ia-list span.ia-logo {
	display: inline-flex;
	flex: none;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--k-bg-alt);
	border: 1px solid var(--k-border);
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: 14px;
	color: var(--k-nav);
}
.ia-list span.ia-logo svg { width: 19px; height: 19px; }
.ia-list a:hover span.ia-logo,
.ia-list button:hover span.ia-logo { background: var(--k-orange-tint); border-color: #F3DBB8; color: var(--k-orange-dark); }
.ia-modal__note { font-size: 12.5px; line-height: 1.55; color: var(--k-faint); margin: 16px 0 0; font-weight: 600; }

/* ---------- Chapô (avec lettrine) ---------- */
.main_article-blog .chapo {
	font-size: clamp(19px, 2.2vw, 21.5px);
	line-height: 1.62;
	font-weight: 600;
	color: var(--k-charcoal);
	margin: 0 0 26px;
	padding: 0 0 26px;
	border-bottom: 1px solid var(--k-border);
}
.main_article-blog .chapo::first-letter {
	float: left;
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: 3.15em;
	line-height: .82;
	margin: 7px 13px 0 0;
	color: var(--k-orange);
}

/* ---------- Titres ---------- */
.main_article-blog h2 {
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--k-charcoal);
	margin: clamp(36px, 4.6vw, 50px) 0 16px;
	text-wrap: pretty;
}
.main_article-blog h2::before {
	content: "";
	display: block;
	width: 36px;
	height: 3px;
	border-radius: 2px;
	background: var(--k-orange);
	margin-bottom: 15px;
}
/* :not(.kk-faq-q) : les questions de la FAQ sont des h3 mais rendues par le
   composant .kk-faq du site — on ne leur applique PAS la puce orange du corps. */
.main_article-blog h3:not(.kk-faq-q) {
	display: flex;
	align-items: baseline;
	gap: 11px;
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: clamp(18.5px, 2.2vw, 21px);
	line-height: 1.3;
	color: var(--k-charcoal);
	margin: clamp(28px, 3.5vw, 36px) 0 12px;
}
.main_article-blog h3:not(.kk-faq-q)::before {
	content: "";
	flex: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--k-orange);
	transform: translateY(-2px);
}

/* ---------- Images ----------
   width:auto → on n'agrandit jamais une capture au-delà de sa taille réelle. */
.main_article-blog > img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 28px auto;
	padding: 20px;
	background-color: #fff;
	background-image: radial-gradient(120% 120% at 50% 0%, #FFFDFA 0%, #F3F1EC 100%);
	border: 1px solid var(--k-border);
	border-radius: 20px;
	box-shadow: var(--k-shadow-card);
}
/* la 1re image de l'article déborde de la colonne : effet ouverture */
.main_article-blog > img:first-of-type {
	padding: 10px;
	width: min(940px, calc(100vw - 32px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

/* ---------- Encadré astuce ----------
   Icône en position ABSOLUE (pas flex) : le contenu de l'astuce peut porter des
   <a>/<strong> inline (« valise de diagnostic auto »), qu'un display:flex sur le
   <p> découperait en colonnes. */
.main_article-blog .astuce {
	position: relative;
	background: var(--k-orange-tint);
	border: 1px solid #F3DBB8;
	border-radius: 18px;
	padding: 18px 22px 18px 66px;
	margin: 0 0 26px;
	font-size: 16.5px;
	line-height: 1.65;
	font-weight: 600;
	color: #7A5A2B;
}
.main_article-blog .astuce::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 18px;
	width: 34px;
	height: 34px;
	border-radius: 11px;
	border: 1px solid #F0D2A6;
	background-color: #fff;
	background-position: center;
	background-size: 19px 19px;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNCcgaGVpZ2h0PScyNCcgZmlsbD0nbm9uZScgc3Ryb2tlPScjQjk2OTBDJyBzdHJva2Utd2lkdGg9JzEuOCcgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJz48cGF0aCBkPSdNOS41IDE4aDUnLz48cGF0aCBkPSdNMTAuNSAyMWgzJy8+PHBhdGggZD0nTTEyIDNhNiA2IDAgMCAwLTMuNSAxMC45VjE1aDd2LTEuMUE2IDYgMCAwIDAgMTIgM1onLz48L3N2Zz4=");
}

/* ---------- Bloc d'appel produit (btn-action) ---------- */
.btn-action:not(.btn-action--wizard) { justify-items: center; text-align: center; }
.btn-action {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 4px 18px;
	align-items: center;
	margin: clamp(32px, 4.2vw, 46px) 0;
	padding: clamp(24px, 3vw, 30px);
	border: none;
	border-radius: 22px;
	background: radial-gradient(120% 160% at 10% 0%, var(--k-blue-light) 0%, var(--k-blue) 62%);
	box-shadow: 0 22px 44px -28px rgba(20, 32, 54, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* variante « finder de compatibilité » (carte avec wizard) */
.btn-action--wizard {
	display: block;
	text-align: left;
	background: #fff;
	background-image: radial-gradient(120% 130% at 88% 0%, var(--k-hero-tint) 0%, #fff 62%);
	border: 1px solid var(--k-border);
	box-shadow: var(--k-shadow-card);
	padding: clamp(18px, 2.4vw, 24px);
}
.btn-action--wizard .btn-action__head {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
	text-align: left;
}
.btn-action--wizard .btn-action__txt { max-width: none; }
.btn-action--wizard .btn-action__head > .btn-action__ico {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: var(--k-orange-tint);
	border: 1px solid #F3DBB8;
	border-radius: 15px;
	color: var(--k-orange-dark);
}
.btn-action--wizard .btn-action__txt strong { color: var(--k-charcoal); }
.btn-action--wizard .btn-action__txt span { color: var(--k-soft); }
.btn-action--wizard .wizard-compat { display: block; width: 100%; }
/* pastille de l'appel produit standard (fond marine) */
.btn-action > .btn-action__ico {
	grid-column: 1 / -1;
	grid-row: 2;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin: 0 0 14px;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 15px;
	color: #fff;
	opacity: .95;
}
.btn-action .btn-action__txt { grid-column: 1 / -1; grid-row: 3; min-width: 0; max-width: 46ch; }
.btn-action > a { grid-column: 1 / -1; grid-row: 4; justify-self: center; margin-top: 20px; }
@media (max-width: 560px) {
	.btn-action { grid-template-columns: minmax(0, 1fr); }
	.btn-action > .btn-action__ico { grid-column: 1; grid-row: 2; margin-bottom: 14px; }
	.btn-action .btn-action__txt { grid-column: 1; grid-row: 3; }
	.btn-action > a { grid-column: 1; grid-row: 4; width: 100%; text-align: center; }
}
.btn-action__txt strong {
	display: block;
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: clamp(18px, 2.4vw, 22px);
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--k-dark-strong);
	margin-bottom: 5px;
}
.btn-action__txt span { display: block; font-size: 15px; line-height: 1.6; color: var(--k-dark-body); }
.btn-action > a {
	flex: none;
	background: var(--k-orange);
	color: #fff;
	font-family: var(--k-font-title);
	font-weight: 700;
	font-size: 15.5px;
	padding: 14px 26px;
	border-radius: 14px;
	text-decoration: none;
	white-space: nowrap;
}
.btn-action > a:hover { background: var(--k-orange-hover); color: #fff; text-decoration: none; }

/* ---------- Partager cet article ---------- */
.partage {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	background: #fff;
	border: 1px solid var(--k-border);
	border-radius: 18px;
	padding: 15px 20px;
	margin: clamp(26px, 3.5vw, 36px) 0;
}
.partage[hidden] { display: none; }
.partage__label { font-family: var(--k-font-title); font-weight: 800; font-size: 14.5px; color: var(--k-charcoal); margin: 0; }
.partage ul { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.partage a,
.partage button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 13px;
	background: var(--k-bg-alt);
	color: var(--k-nav);
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background .14s, color .14s, transform .14s;
}
.partage a:hover,
.partage button:hover { background: var(--k-orange); color: #fff; transform: translateY(-2px); }

/* ---------- Vidéo YouTube en façade (data-embed) ----------
   Corps stocké : <div class="youtube_wrapper"><div class="youtube" data-embed="ID">
   <div class="play-button"></div></div></div>. AUCUNE requête YouTube au chargement
   (RGPD, cf. include/video.php) : cadre de marque sobre + bouton ; blog.js injecte
   l'iframe youtube-nocookie au clic. */
/* FILET DE SECURITE. Les facades du CMS sont converties vers le composant
   commun (.kk-video) par blogVideoFacades() : ces regles ne servent plus que
   si un article porte un balisage que la conversion ne reconnait pas. A
   supprimer une fois verifie sur le blog en ligne qu'il ne reste aucun
   .youtube[data-embed]. */
.main_article-blog .youtube_wrapper { margin: 26px 0; }
.main_article-blog .youtube {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--k-r-lg);
	overflow: hidden;
	cursor: pointer;
	background: var(--k-gradient-dark);
}
/* Vignette auto-hébergée (injectée par blog.js) ; si absente, le dégradé reste. */
.main_article-blog .youtube-thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main_article-blog .youtube .play-button {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--k-orange);
	box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.55);
	transition: transform .16s ease;
}
.main_article-blog .youtube .play-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-42%, -50%);
	border-style: solid;
	border-width: 13px 0 13px 22px;
	border-color: transparent transparent transparent #fff;
}
.main_article-blog .youtube:hover .play-button,
.main_article-blog .youtube:focus-visible .play-button { transform: scale(1.08); }
.main_article-blog .youtube:focus-visible { outline: 3px solid var(--k-orange); outline-offset: 3px; }
.main_article-blog .youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Pour en savoir plus ---------- */
.container-flex-blog-article {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
	gap: 14px;
	margin: 6px 0 26px;
}
.container-flex-blog-article .container-flex__item a {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--k-border);
	border-radius: 20px;
	padding: 20px 22px;
	height: 100%;
	text-decoration: none;
	box-shadow: var(--k-shadow-card);
	transition: border-color .15s, transform .15s, box-shadow .15s;
}
.container-flex-blog-article .container-flex__item a:hover {
	border-color: var(--k-orange);
	transform: translateY(-3px);
	box-shadow: 0 22px 40px -28px rgba(40, 30, 15, 0.5);
}
.container-flex-blog-article .container-flex__item span {
	flex: 1;
	min-width: 0;
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: 16.5px;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--k-charcoal);
	text-wrap: pretty;
}
.container-flex-blog-article .container-flex__item a::after {
	content: "\203A";
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--k-orange-tint);
	color: var(--k-orange-dark);
	font-family: var(--k-font-title);
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	padding-bottom: 2px;
	transition: transform .16s, background .16s;
}
.container-flex-blog-article .container-flex__item a:hover::after { transform: translateX(3px); background: #F9DEB7; }

/* Page catégorie : mêmes cartes que « Pour en savoir plus », mais en grille
   pleine largeur de la colonne (le bloc article, lui, est bridé à 450px). */
.container-flex-blog-article.blog-category-list {
	max-width: none;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin: 4px 0 30px;
}

@media (max-width: 720px) {
	.main_article-blog { font-size: 16.5px; }
	/* Pas la vignette du lecteur : elle remplit un cadre qui porte deja son
	   rayon et son overflow, un rayon de plus decouvrirait les coins. */
	.main_article-blog img:not(.kk-video-thumb) { border-radius: 14px; }
	.btn-action a { width: 100%; text-align: center; }
}

/**
 * Hub du blog (/blog/) — maquette Blog.dc.html.
 *
 * FIDÈLE au gabarit : on reproduit SA structure et SES valeurs (héros en grille,
 * cartes bl-card à survol, tuiles d'icônes). On ne réutilise du socle que ce que
 * le gabarit importe lui-même : largeur .kk-container, boutons .kk-btn, la bande
 * CTA bleue .kk-cta-band (demande explicite : réutiliser le composant du site),
 * la bande presse .kk-press, les tokens --k-* et le wizard de compatibilité.
 *
 * La section « Les articles les plus lus » du gabarit n'est volontairement PAS
 * intégrée (demande utilisateur).
 */

/* ===== Héro ===== */
.bl-hero-section {
	background:
		radial-gradient(90% 100% at 92% -6%, rgba(242, 150, 68, 0.16) 0%, rgba(242, 150, 68, 0) 58%),
		radial-gradient(120% 130% at 84% 0%, var(--k-hero-tint) 0%, var(--k-bg) 66%);
}
.bl-hero-inner {
	padding-top: clamp(20px, 3vw, 32px);
	padding-bottom: clamp(32px, 4.5vw, 52px);
}

/* Fil d'Ariane : boutons obfusqués (règle projet), rendu identique au gabarit. */
.bl-crumb {
	font-size: 13px;
	font-weight: 600;
	color: var(--k-faint);
	margin-bottom: 20px;
}
.bl-crumb button {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: var(--k-faint);
	cursor: pointer;
}
.bl-crumb button:hover { color: var(--k-orange-dark); }
.bl-crumb-sep { margin: 0 6px; }
.bl-crumb-cur { color: var(--k-nav); }

/* Grille héro : texte + wizard de compatibilité. */
.bl-hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(24px, 3.5vw, 48px);
	align-items: center;
}
@media (max-width: 900px) {
	.bl-hero { grid-template-columns: 1fr; }
}

.bl-hero-h1 {
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: clamp(30px, 4.4vw, 46px);
	letter-spacing: -0.03em;
	line-height: 1.06;
	margin: 16px 0;
}
.bl-accent { color: var(--k-orange); }
.bl-hero-lead {
	font-size: clamp(16px, 1.7vw, 18px);
	line-height: 1.65;
	color: var(--k-nav);
	margin: 0 0 24px;
	max-width: 54ch;
}
/* Le wizard occupe la 2e colonne ; sur mobile il passe sous le texte. */
.bl-hero-wizard { min-width: 0; }

/* ===== Sections « guides » et « thèmes » ===== */
.bl-section {
	padding-top: clamp(34px, 4.6vw, 58px);
	padding-bottom: clamp(10px, 1.6vw, 18px);
}
.bl-section--themes {
	padding-top: clamp(24px, 3vw, 34px);
	padding-bottom: clamp(34px, 4.6vw, 56px);
}
.bl-h2 {
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: clamp(22px, 3vw, 30px);
	letter-spacing: -0.02em;
	margin: 0 0 8px;
}
.bl-h2--sm { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: clamp(16px, 2.2vw, 22px); }
.bl-section-lead {
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--k-soft);
	margin: 0 0 clamp(18px, 2.4vw, 26px);
	max-width: 64ch;
}

/* Grilles de cartes. */
.bl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
	gap: 14px;
}
.bl-grid--themes {
	grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}

/* Carte générique (guides + thèmes) : survol repris du gabarit. */
.bl-card {
	background: #fff;
	border: 1px solid var(--k-border);
	box-shadow: var(--k-shadow-card);
	text-decoration: none;
	color: inherit;
	transition: border-color .15s, transform .15s, box-shadow .15s;
}
.bl-card:hover {
	border-color: var(--k-orange);
	transform: translateY(-3px);
	box-shadow: 0 22px 42px -28px rgba(40, 30, 15, 0.5);
}
.bl-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	background: var(--k-orange-tint);
	color: var(--k-orange-dark);
	font-family: var(--k-font-title);
	font-weight: 700;
	line-height: 1;
	transition: transform .16s, background .16s;
}
.bl-card:hover .bl-arrow {
	transform: translateX(3px);
	background: #F9DEB7;
}

/* Carte « guide de fond » : verticale, tuile + flèche en tête. */
.bl-guide {
	border-radius: 20px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bl-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.bl-guide-ico {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: var(--k-orange-tint);
	color: var(--k-orange-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.bl-guide .bl-arrow {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	font-size: 19px;
	padding-bottom: 2px;
}
.bl-card-t {
	display: block;
	font-family: var(--k-font-title);
	font-weight: 800;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.bl-card-d {
	display: block;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--k-soft);
}

/* Carte « thème » : horizontale, fond BLANC (comme les cartes « guide »). */
.bl-theme {
	background: #fff;
	box-shadow: var(--k-shadow-card);
	border-radius: 18px;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	gap: 15px;
}
/* Tuile d'icône en orange pâle : visible sur le fond blanc de la carte. */
.bl-theme-ico {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--k-orange-tint);
	color: var(--k-orange-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.bl-theme-txt { flex: 1; min-width: 0; }
.bl-theme .bl-card-t { font-size: 16px; line-height: 1.3; }
.bl-theme .bl-card-d { font-size: 13.5px; line-height: 1.5; margin-top: 3px; }
.bl-theme .bl-arrow {
	width: 34px;
	height: 34px;
	border-radius: 11px;
	font-size: 18px;
	padding-bottom: 2px;
}

/* ===== Presse ===== */
/* La bande presse réutilise .kk-press (socle) ; on ne pose ici qu'un léger
   espacement propre au hub. */
.bl-press { padding-top: clamp(20px, 2.6vw, 30px); padding-bottom: clamp(38px, 5vw, 60px); }
