/* =========================================================================
   BENKI — Systeme visuel
   Media economique et financier. Trois principes :
   1. Le chiffre est un objet typographique de premier plan (mono, cuivre, filet).
   2. Le filet de registre encode la hierarchie, il ne decore pas.
   3. La publicite est identifiee, cadree, et n'imite jamais l'editorial.
   ========================================================================= */

/* --- 1. Jetons ---------------------------------------------------------- */

:root {
	--ob-encre: #0B1A21;
	--ob-petrole: #12333F;
	--ob-vert: #0E5A45;
	--ob-cuivre: #B5793F;
	--ob-papier: #FCFCFB;
	--ob-brume: #ECEFEE;

	--ob-trait: #D8DEDC;
	--ob-trait-fort: #B7C1BE;
	--ob-gris: #5C6B70;
	--ob-gris-clair: #849499;

	--f-titre: "Newsreader", Georgia, "Times New Roman", serif;
	--f-ui: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--f-chiffre: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

	--ob-lecture: 19px;

	--pas: 8px;
	--enveloppe: 1240px;
	--rayon: 2px;

	--ombre-douce: 0 1px 2px rgba(11, 26, 33, .05), 0 8px 24px rgba(11, 26, 33, .06);
}

/* --- 2. Base ------------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	background: var(--ob-papier);
	color: var(--ob-encre);
	font-family: var(--f-ui);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ob-vert); }

:focus-visible {
	outline: 2px solid var(--ob-cuivre);
	outline-offset: 2px;
}

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--f-titre); font-weight: 600; line-height: 1.15; letter-spacing: -.015em; margin: 0; }

.ecran-lecteur {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.saut-contenu {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--ob-encre); color: #fff; padding: 12px 20px;
	font-family: var(--f-chiffre); font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
}
.saut-contenu:focus { left: 0; color: #fff; }

.enveloppe {
	width: 100%;
	max-width: var(--enveloppe);
	margin-inline: auto;
	padding-inline: 20px;
}

/* --- 3. Elements signature ---------------------------------------------- */

/* Le filet de registre : une regle fine et un repere cuivre. */
.section-titre {
	font-family: var(--f-ui);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--ob-encre);
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	white-space: nowrap;
}
.section-titre::before {
	content: "";
	width: 3px;
	height: 15px;
	background: var(--ob-cuivre);
	flex: 0 0 auto;
}
.section-titre > span { flex: 0 0 auto; }
.section-titre::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--ob-trait);
}
.section-titre--centre { justify-content: center; }
.section-titre--centre::after { display: none; }

.section-entete {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 26px;
	flex-wrap: wrap;
}
.section-entete .section-titre { flex: 1 1 auto; }

.section-lien {
	font-family: var(--f-chiffre);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--ob-vert);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	flex: 0 0 auto;
}

/* Etiquette de rubrique */
.rubrique {
	display: inline-block;
	font-family: var(--f-chiffre);
	font-size: 10.5px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--ob-vert);
	margin-bottom: 10px;
	padding-bottom: 3px;
	border-bottom: 1.5px solid var(--ob-vert);
}
.rubrique:hover { color: var(--ob-cuivre); border-color: var(--ob-cuivre); }
.rubrique--mini { font-size: 9.5px; margin-bottom: 5px; border: 0; padding: 0; }
.rubrique--sponso { color: var(--ob-cuivre); border-color: var(--ob-cuivre); margin-left: 8px; }
.rubrique--article { font-size: 12px; margin-bottom: 16px; }

/* Metadonnees */
.meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	font-family: var(--f-chiffre);
	font-size: 11px;
	color: var(--ob-gris);
	letter-spacing: .02em;
}
.meta > * + *::before {
	content: "·";
	margin-right: 14px;
	color: var(--ob-trait-fort);
}
.meta__auteur a { color: var(--ob-encre); border-bottom: 1px solid var(--ob-trait); }
.meta__date { font-variant-numeric: tabular-nums; }

/* --- 4. En-tete --------------------------------------------------------- */

.entete { position: relative; z-index: 40; background: var(--ob-papier); }

.entete__barre {
	background: var(--ob-encre);
	color: rgba(255, 255, 255, .82);
}
.entete__barre-interieur {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 38px;
	font-family: var(--f-chiffre);
	font-size: 11px;
	letter-spacing: .04em;
}
.entete__date { text-transform: capitalize; }
.entete__mention {
	color: var(--ob-cuivre);
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 10px;
}
.entete__nav-secondaire { margin-left: auto; }
.entete__nav-secondaire ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.entete__barre a { color: inherit; }
.entete__barre a:hover { color: #fff; }
.entete__mention + .entete__magazine { margin-left: auto; }
.entete__magazine {
	color: var(--ob-cuivre);
	border-bottom: 1px solid currentColor;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 10px;
	padding-bottom: 2px;
}

.reseaux { display: flex; gap: 4px; align-items: center; }
.reseaux--barre { margin-left: 8px; }
.reseaux__lien {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 5px;
	font-family: var(--f-chiffre);
	font-size: 10px;
	text-transform: lowercase;
	border: 1px solid rgba(255, 255, 255, .22);
}
.reseaux__lien:hover { background: var(--ob-cuivre); border-color: var(--ob-cuivre); color: #fff; }

.entete__marque-interieur {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-block: 22px;
}

.marque { flex: 1 1 auto; min-width: 0; }
.marque__titre { margin: 0; }
.marque__nom {
	font-family: var(--f-titre);
	font-size: clamp(30px, 5vw, 46px);
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1;
	color: var(--ob-encre);
}
.marque__nom:hover { color: var(--ob-encre); }
.marque__baseline {
	margin: 8px 0 0;
	font-family: var(--f-chiffre);
	font-size: 11px;
	color: var(--ob-gris);
	letter-spacing: .04em;
	max-width: 60ch;
}
.custom-logo-link { display: block; }
.custom-logo { max-height: 60px; width: auto; }

.entete__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.bouton-recherche {
	width: 40px; height: 40px;
	background: none;
	border: 1px solid var(--ob-trait);
	font-size: 20px;
	line-height: 1;
	color: var(--ob-encre);
}
.bouton-recherche:hover { border-color: var(--ob-encre); }

.bouton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	font-family: var(--f-chiffre);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .12em;
	border: 1px solid transparent;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.bouton--plein { background: var(--ob-vert); color: #fff; }
.bouton--plein:hover { background: var(--ob-encre); color: #fff; }
.bouton--ligne { border-color: var(--ob-trait-fort); color: var(--ob-encre); }
.bouton--ligne:hover { border-color: var(--ob-encre); background: var(--ob-encre); color: #fff; }
.bouton--clair { border-color: rgba(255, 255, 255, .4); color: #fff; }
.bouton--clair:hover { background: #fff; color: var(--ob-encre); border-color: #fff; }

.bouton-menu {
	display: none;
	width: 40px; height: 40px;
	background: none;
	border: 1px solid var(--ob-trait);
	position: relative;
}
.bouton-menu__trait,
.bouton-menu__trait::before,
.bouton-menu__trait::after {
	position: absolute;
	left: 50%;
	width: 18px;
	height: 1.5px;
	background: var(--ob-encre);
	transform: translateX(-50%);
}
.bouton-menu__trait { top: 50%; margin-top: -.75px; }
.bouton-menu__trait::before { content: ""; top: -6px; }
.bouton-menu__trait::after { content: ""; top: 6px; }

/* Navigation */
.navigation {
	border-top: 1px solid var(--ob-encre);
	border-bottom: 1px solid var(--ob-trait);
	background: var(--ob-papier);
}
.navigation__liste {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.navigation__liste::-webkit-scrollbar { display: none; }
.navigation__liste > li { position: relative; flex: 0 0 auto; }
.navigation__liste > li > a {
	display: block;
	padding: 14px 18px;
	font-family: var(--f-ui);
	font-size: 12.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
}
.navigation__liste > li:first-child > a { padding-left: 0; }
.navigation__liste > li > a:hover,
.navigation__liste > li.current-menu-item > a,
.navigation__liste > li.current-cat > a {
	color: var(--ob-vert);
	border-bottom-color: var(--ob-cuivre);
}
.navigation__liste .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 240px;
	background: var(--ob-encre);
	list-style: none;
	margin: 0; padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
	box-shadow: var(--ombre-douce);
	z-index: 50;
}
.navigation__liste > li:hover .sub-menu,
.navigation__liste > li:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.navigation__liste .sub-menu a {
	display: block;
	padding: 9px 20px;
	color: rgba(255, 255, 255, .85);
	font-size: 13px;
}
.navigation__liste .sub-menu a:hover { background: var(--ob-vert); color: #fff; }

.tiroir-recherche { border-bottom: 1px solid var(--ob-trait); background: var(--ob-brume); padding-block: 18px; }

.recherche { display: flex; gap: 0; max-width: 620px; }
.recherche__champ {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid var(--ob-trait-fort);
	border-right: 0;
	background: #fff;
	font-family: var(--f-ui);
	font-size: 15px;
	color: var(--ob-encre);
}
.recherche__champ:focus { outline: none; border-color: var(--ob-encre); }
.recherche__bouton {
	padding: 12px 20px;
	background: var(--ob-encre);
	color: #fff;
	border: 1px solid var(--ob-encre);
	font-family: var(--f-chiffre);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.recherche__bouton:hover { background: var(--ob-vert); border-color: var(--ob-vert); }

/* Menu mobile */
.menu-mobile {
	position: fixed;
	inset: 0;
	background: var(--ob-encre);
	color: #fff;
	z-index: 200;
	overflow-y: auto;
	padding: 84px 20px 40px;
}
.menu-mobile[hidden] { display: none; }
.menu-mobile__liste { list-style: none; margin: 0 0 24px; padding: 0; }
.menu-mobile__liste a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	font-family: var(--f-titre);
	font-size: 21px;
	color: #fff;
}
.menu-mobile__liste .sub-menu { list-style: none; padding-left: 16px; margin: 0; }
.menu-mobile__liste .sub-menu a { font-family: var(--f-ui); font-size: 14px; opacity: .75; }
.menu-mobile .recherche__champ { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.menu-mobile .recherche__bouton { background: var(--ob-cuivre); border-color: var(--ob-cuivre); }
.menu-mobile .reseaux { margin-top: 24px; }
body.menu-ouvert { overflow: hidden; }

/* --- 5. Bande de cotation (element signature) --------------------------- */

.cotation {
	background: var(--ob-petrole);
	color: #fff;
	border-bottom: 1px solid var(--ob-encre);
}
.cotation__interieur {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 44px;
	overflow: hidden;
}
.cotation__titre {
	flex: 0 0 auto;
	font-family: var(--f-chiffre);
	font-size: 9.5px;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--ob-cuivre);
	padding-right: 18px;
	border-right: 1px solid rgba(255, 255, 255, .18);
}
.cotation__piste { flex: 1 1 auto; overflow: hidden; min-width: 0; }
.cotation__defile {
	display: flex;
	gap: 40px;
	white-space: nowrap;
	width: max-content;
	animation: cotation-defile 46s linear infinite;
}
.cotation:hover .cotation__defile { animation-play-state: paused; }
@keyframes cotation-defile {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.cotation__defile { animation: none; width: auto; overflow-x: auto; }
}
.cotation__item {
	display: inline-flex;
	align-items: baseline;
	gap: 9px;
	font-family: var(--f-chiffre);
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}
.cotation__label { color: rgba(255, 255, 255, .6); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; }
.cotation__valeur { color: #fff; font-weight: 500; }
.cotation__var--hausse { color: #6FBF9A; }
.cotation__var--baisse { color: #E08A7A; }
.cotation__var--neutre { color: rgba(255, 255, 255, .5); }

.cotation__sponsor {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 18px;
	border-left: 1px solid rgba(255, 255, 255, .18);
	color: #fff;
}
.cotation__sponsor-label {
	font-family: var(--f-chiffre);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: rgba(255, 255, 255, .5);
}
.cotation__sponsor-nom { font-family: var(--f-ui); font-size: 13px; font-weight: 600; }
.cotation__sponsor img { max-height: 22px; width: auto; }

/* --- 6. Publicite ------------------------------------------------------- */

.pub {
	display: block;
	position: relative;
	margin: 32px auto;
	text-align: center;
	max-width: 100%;
}
.pub__mention {
	display: block;
	font-family: var(--f-chiffre);
	font-size: 8.5px;
	text-transform: uppercase;
	letter-spacing: .22em;
	color: var(--ob-gris-clair);
	margin-bottom: 7px;
}
.pub__contenu {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ob-brume);
	border: 1px solid var(--ob-trait);
	overflow: hidden;
	min-height: 90px;
}
.pub__contenu > * { max-width: 100%; }
.pub__contenu img { width: 100%; height: auto; }

.pub__contenu:has(.maison) { background: none; border: 0; }

.pub--leaderboard .pub__contenu { min-height: 110px; }
.pub--rectangle .pub__contenu { min-height: 250px; }
.pub--halfpage .pub__contenu { min-height: 480px; }
.pub--in-article { margin-block: 36px; }
.pub--widget { margin: 0 0 28px; }

.pub--sticky {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 150;
	margin: 0;
	padding: 6px 34px 6px 10px;
	background: rgba(252, 252, 251, .97);
	border-top: 1px solid var(--ob-trait-fort);
	backdrop-filter: blur(6px);
	display: none;
}
.pub--sticky .pub__mention { margin-bottom: 3px; }
.pub--sticky .pub__contenu { min-height: 60px; border: 0; background: none; }
.pub__fermer {
	position: absolute;
	top: 4px; right: 6px;
	width: 26px; height: 26px;
	background: none;
	border: 1px solid var(--ob-trait);
	color: var(--ob-gris);
	font-size: 16px;
	line-height: 1;
}

/* Auto-promotion quand un emplacement n'est pas vendu */
.maison {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 24px 20px;
	background: var(--ob-encre);
	color: #fff;
	text-align: center;
}
.maison:hover { color: #fff; background: var(--ob-petrole); }
.maison__eyebrow {
	font-family: var(--f-chiffre);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--ob-cuivre);
}
.maison__titre { font-family: var(--f-titre); font-size: 19px; max-width: 26ch; line-height: 1.25; }
.maison__cta {
	font-family: var(--f-chiffre);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .12em;
	border-bottom: 1px solid var(--ob-cuivre);
	padding-bottom: 2px;
}
.maison--magazine { padding: 18px; gap: 14px; }
.maison--magazine img { max-height: 340px; width: auto; box-shadow: 0 12px 30px rgba(0, 0, 0, .3); }

.sponsor-rubrique {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px;
	background: var(--ob-brume);
	border: 1px solid var(--ob-trait);
	flex: 0 0 auto;
}
.sponsor-rubrique__label {
	font-family: var(--f-chiffre);
	font-size: 8.5px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--ob-gris);
}
.sponsor-rubrique__nom { font-weight: 600; font-size: 13px; }

.bandeau-sponso {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 20px 0 0;
	padding: 11px 16px;
	background: rgba(181, 121, 63, .09);
	border-left: 3px solid var(--ob-cuivre);
}
.bandeau-sponso__tag {
	font-family: var(--f-chiffre);
	font-size: 9.5px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--ob-cuivre);
	font-weight: 600;
}
.bandeau-sponso__texte { font-size: 13px; color: var(--ob-gris); }

/* --- 7. Mise en page ---------------------------------------------------- */

.site { display: block; padding-bottom: 60px; }

.zone { display: grid; gap: 48px; align-items: start; padding-block: 8px 40px; }
.zone--avec-colonne { grid-template-columns: minmax(0, 1fr) 300px; }
.zone--large { grid-template-columns: minmax(0, 1fr); }
.zone--large .zone__principal { max-width: 820px; margin-inline: auto; }
.zone__principal { min-width: 0; }
.zone__colonne { min-width: 0; position: sticky; top: 16px; }

.ariane {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	padding-block: 18px 6px;
	font-family: var(--f-chiffre);
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: .09em;
	color: var(--ob-gris);
}
.ariane a { border-bottom: 1px solid transparent; }
.ariane a:hover { border-bottom-color: currentColor; }
.ariane__sep { color: var(--ob-trait-fort); }

.grille { display: grid; gap: 32px 26px; }
.grille--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grille--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grille--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* --- 8. Cartes ---------------------------------------------------------- */

.vignette {
	display: block;
	position: relative;
	overflow: hidden;
	background: var(--ob-brume);
	aspect-ratio: 16 / 10;
}
.vignette img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .6, .2, 1); }
.carte:hover .vignette img { transform: scale(1.035); }

.vignette__repli {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: linear-gradient(160deg, var(--ob-petrole), var(--ob-encre));
	color: #fff;
}
.vignette__repli-initiale {
	font-family: var(--f-titre);
	font-size: 46px;
	line-height: 1;
	color: var(--ob-cuivre);
}
.vignette__repli-label {
	font-family: var(--f-chiffre);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: rgba(255, 255, 255, .55);
	max-width: 80%;
	text-align: center;
}

.carte { display: flex; flex-direction: column; gap: 14px; }
.carte__corps { display: flex; flex-direction: column; }
.carte__titre {
	font-size: 19px;
	line-height: 1.24;
	margin: 0 0 8px;
}
.carte__titre a { background-image: linear-gradient(currentColor, currentColor); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s ease; }
.carte__titre a:hover { background-size: 100% 1px; }
.carte__chapo {
	margin: 0 0 12px;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ob-gris);
}
.carte__corps .meta { margin-top: auto; }

.carte--une .carte__titre { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.08; letter-spacing: -.025em; }
.carte--une .carte__chapo { font-size: 17px; color: var(--ob-encre); max-width: 62ch; }
.vignette--une { aspect-ratio: 16 / 9; }

.carte--secondaire .carte__titre { font-size: 17px; }
.vignette--secondaire { aspect-ratio: 3 / 2; }

.carte--liste {
	flex-direction: row;
	gap: 22px;
	padding-bottom: 26px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--ob-trait);
}
.carte--liste .carte__lien { flex: 0 0 200px; }
.vignette--liste { aspect-ratio: 4 / 3; }
.carte--liste .carte__titre { font-size: 21px; }

/* --- 9. Une ------------------------------------------------------------- */

.une { padding-block: 34px 44px; border-bottom: 1px solid var(--ob-trait); }
.une__grille { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; }
.une__principal { display: flex; flex-direction: column; gap: 34px; min-width: 0; }
.une__secondaires { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }

.une__fil { min-width: 0; }
.section-titre--fil { margin-bottom: 18px; }

.fil { list-style: none; margin: 0 0 28px; padding: 0; counter-reset: fil; }
.fil__item {
	display: flex;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid var(--ob-trait);
}
.fil__item:first-child { padding-top: 0; }
.fil__heure {
	flex: 0 0 46px;
	font-family: var(--f-chiffre);
	font-size: 10.5px;
	color: var(--ob-cuivre);
	text-transform: uppercase;
	letter-spacing: .06em;
	padding-top: 3px;
	font-variant-numeric: tabular-nums;
}
.fil__titre { font-family: var(--f-titre); font-size: 16px; line-height: 1.3; }

/* --- 10. Les chiffres --------------------------------------------------- */

.chiffres { padding-block: 46px; background: var(--ob-encre); color: #fff; }
.chiffres .section-titre { color: rgba(255, 255, 255, .9); margin-bottom: 30px; }
.chiffres .section-titre::after { background: rgba(255, 255, 255, .2); }

.chiffres__grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .14); }
.chiffre { background: var(--ob-encre); padding: 26px 24px 24px; }
.chiffre__valeur {
	margin: 0 0 6px;
	font-family: var(--f-chiffre);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -.03em;
	color: var(--ob-cuivre);
	font-variant-numeric: tabular-nums;
}
.chiffre__unite {
	margin: 0 0 10px;
	font-family: var(--f-ui);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #fff;
}
.chiffre__source { margin: 0; font-size: 12.5px; color: rgba(255, 255, 255, .55); line-height: 1.45; }

/* Sur fond clair (page annonceurs) */
.kit-audience .chiffres__grille { background: var(--ob-trait); }
.kit-audience .chiffre { background: var(--ob-papier); }
.kit-audience .chiffre__unite { color: var(--ob-encre); }
.kit-audience .chiffre__source { color: var(--ob-gris); }
.kit-audience .section-titre { margin-bottom: 26px; }

/* --- 11. Blocs de rubrique et derniers articles ------------------------- */

.bloc-rubrique { padding-block: 46px; border-bottom: 1px solid var(--ob-trait); }
.derniers { padding-block: 46px; }
.derniers__plus { text-align: center; margin: 38px 0 0; }

/* --- 12. Newsletter ----------------------------------------------------- */

.lettre--bande { background: var(--ob-petrole); color: #fff; padding-block: 46px; }
.lettre--bande .lettre__interieur {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
	gap: 34px;
	align-items: center;
}
.lettre__titre { font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; }
.lettre__accroche { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .75); max-width: 52ch; }

.lettre__form { display: flex; }
.lettre__form input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, .3);
	border-right: 0;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font-family: var(--f-ui);
	font-size: 15px;
}
.lettre__form input::placeholder { color: rgba(255, 255, 255, .45); }
.lettre__form input:focus { outline: none; border-color: var(--ob-cuivre); background: rgba(255, 255, 255, .1); }
.lettre__form button {
	padding: 14px 22px;
	background: var(--ob-cuivre);
	border: 1px solid var(--ob-cuivre);
	color: #fff;
	font-family: var(--f-chiffre);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .12em;
	white-space: nowrap;
}
.lettre__form button:hover { background: #fff; color: var(--ob-encre); border-color: #fff; }
.lettre__preuve {
	grid-column: 2;
	margin: 10px 0 0;
	font-family: var(--f-chiffre);
	font-size: 11px;
	color: rgba(255, 255, 255, .55);
}

.lettre--colonne { background: var(--ob-encre); color: #fff; padding: 26px 22px; margin-bottom: 28px; }
.lettre--colonne .lettre__titre { font-size: 20px; }
.lettre--colonne .lettre__accroche { font-size: 13.5px; margin-bottom: 16px; }
.lettre--colonne .lettre__form { flex-direction: column; gap: 8px; }
.lettre--colonne .lettre__form input { border-right: 1px solid rgba(255, 255, 255, .3); }
.lettre--colonne .lettre__preuve { grid-column: auto; }

/* --- 13. Confiance ------------------------------------------------------ */

.confiance { padding-block: 46px; border-top: 1px solid var(--ob-trait); }
.confiance__grille {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 34px 48px;
	margin-top: 30px;
}
.confiance__grille img {
	max-height: 40px;
	width: auto;
	filter: grayscale(1);
	opacity: .55;
	transition: filter .25s ease, opacity .25s ease;
}
.confiance__grille img:hover { filter: none; opacity: 1; }

/* --- 14. Article -------------------------------------------------------- */

.article__entete { padding-block: 10px 26px; }
.article__titre {
	font-size: clamp(30px, 4.6vw, 50px);
	line-height: 1.07;
	letter-spacing: -.028em;
	margin: 0 0 18px;
	max-width: 22ch;
}
.article__chapo {
	font-family: var(--f-titre);
	font-size: clamp(18px, 2.2vw, 22px);
	line-height: 1.45;
	color: var(--ob-gris);
	margin: 0 0 20px;
	max-width: 62ch;
}
.article__signature {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	padding-block: 14px;
	border-top: 1px solid var(--ob-encre);
	border-bottom: 1px solid var(--ob-trait);
	font-family: var(--f-chiffre);
	font-size: 11.5px;
	color: var(--ob-gris);
}
.article__signature > * + *::before { content: "·"; margin-right: 14px; color: var(--ob-trait-fort); }
.article__signature .meta__auteur a { color: var(--ob-encre); font-weight: 500; }

.article__image { margin: 26px 0 32px; }
.article__image img { width: 100%; }
.article__image figcaption {
	margin-top: 9px;
	font-family: var(--f-chiffre);
	font-size: 11px;
	color: var(--ob-gris);
	padding-left: 12px;
	border-left: 2px solid var(--ob-cuivre);
}

/* Corps de texte */
.texte {
	font-family: var(--f-titre);
	font-size: var(--ob-lecture);
	line-height: 1.75;
	color: #16262D;
	max-width: 68ch;
}
.texte > * { margin-block: 0 1.15em; }
.texte > *:last-child { margin-bottom: 0; }

.texte p { margin-block: 0 1.15em; }

.texte h2 {
	font-size: 1.5em;
	line-height: 1.2;
	margin-block: 1.9em .55em;
	padding-top: .55em;
	border-top: 1px solid var(--ob-trait);
	position: relative;
}
.texte h2::before {
	content: "";
	position: absolute;
	top: -1px; left: 0;
	width: 40px; height: 2px;
	background: var(--ob-cuivre);
}
.texte h3 { font-size: 1.22em; margin-block: 1.5em .45em; }
.texte h4 { font-family: var(--f-ui); font-size: .82em; text-transform: uppercase; letter-spacing: .1em; color: var(--ob-vert); margin-block: 1.5em .4em; }

.texte a { color: var(--ob-vert); border-bottom: 1px solid rgba(14, 90, 69, .35); }
.texte a:hover { border-bottom-color: var(--ob-vert); background: rgba(14, 90, 69, .06); }

.texte strong { font-weight: 600; color: var(--ob-encre); }

.texte ul, .texte ol { padding-left: 1.3em; }
.texte li { margin-bottom: .45em; }
.texte ul { list-style: none; padding-left: 0; }
.texte ul > li { position: relative; padding-left: 1.3em; }
.texte ul > li::before {
	content: "";
	position: absolute;
	left: .1em; top: .72em;
	width: 7px; height: 1.5px;
	background: var(--ob-cuivre);
}

.texte blockquote {
	margin: 1.8em 0;
	padding: 0 0 0 26px;
	border-left: 2px solid var(--ob-cuivre);
	font-size: 1.16em;
	line-height: 1.45;
	font-style: italic;
	color: var(--ob-petrole);
}
.texte blockquote p:last-child { margin-bottom: 0; }
.texte blockquote cite { display: block; margin-top: .6em; font-family: var(--f-chiffre); font-size: .62em; font-style: normal; text-transform: uppercase; letter-spacing: .1em; color: var(--ob-gris); }

.texte figure { margin-block: 1.8em; }
.texte figcaption { font-family: var(--f-chiffre); font-size: .62em; color: var(--ob-gris); margin-top: .6em; padding-left: 12px; border-left: 2px solid var(--ob-trait); }

.texte hr { border: 0; height: 1px; background: var(--ob-trait); margin-block: 2.2em; }

.texte table { width: 100%; border-collapse: collapse; font-family: var(--f-ui); font-size: .8em; }
.texte th, .texte td { padding: 11px 14px; border-bottom: 1px solid var(--ob-trait); text-align: left; }
.texte th { font-family: var(--f-chiffre); font-size: .82em; text-transform: uppercase; letter-spacing: .08em; color: var(--ob-gris); border-bottom-color: var(--ob-encre); }
.texte td { font-variant-numeric: tabular-nums; }

.texte img { margin-inline: auto; }

.tableau-defilant { margin-block: 1.8em; -webkit-overflow-scrolling: touch; }
.tableau-defilant table { margin-block: 0; min-width: 460px; }

.benki-encadre {
	margin: 1.8em 0;
	padding: 20px 24px;
	background: var(--ob-brume);
	border-left: 3px solid var(--ob-vert);
	font-size: .92em;
}

/* Le corps de l'article contient des publicites : elles reprennent la largeur totale */
.texte .pub { max-width: none; font-family: var(--f-ui); }

.article__pied { margin-top: 40px; }

.mots-cles { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 24px; }
.mots-cles__label { font-family: var(--f-chiffre); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--ob-gris); margin-right: 4px; }
.mots-cles a {
	padding: 5px 11px;
	background: var(--ob-brume);
	font-size: 12.5px;
	border: 1px solid var(--ob-trait);
}
.mots-cles a:hover { background: var(--ob-encre); color: #fff; border-color: var(--ob-encre); }

.partage {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding-block: 18px;
	border-top: 1px solid var(--ob-trait);
	border-bottom: 1px solid var(--ob-trait);
}
.partage__label { font-family: var(--f-chiffre); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--ob-gris); margin-right: 4px; }
.partage__lien {
	padding: 7px 14px;
	border: 1px solid var(--ob-trait-fort);
	font-family: var(--f-chiffre);
	font-size: 11px;
	letter-spacing: .05em;
}
.partage__lien:hover { background: var(--ob-vert); border-color: var(--ob-vert); color: #fff; }

.auteur {
	display: flex;
	gap: 20px;
	margin-top: 32px;
	padding: 24px;
	background: var(--ob-brume);
}
.auteur__photo { border-radius: 50%; flex: 0 0 auto; }
.auteur__nom { margin: 0 0 6px; font-family: var(--f-titre); font-size: 19px; font-weight: 600; }
.auteur__bio { margin: 0 0 10px; font-size: 14px; color: var(--ob-gris); line-height: 1.55; }
.auteur__lien { font-family: var(--f-chiffre); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ob-vert); border-bottom: 1px solid currentColor; }

.similaires { margin-top: 52px; }
.similaires .section-entete { margin-bottom: 24px; }

.pages-article { display: flex; gap: 8px; align-items: center; font-family: var(--f-chiffre); font-size: 12px; margin-top: 24px; }
.pages-article a, .pages-article > span:not(:first-child) { padding: 5px 10px; border: 1px solid var(--ob-trait); }

/* --- 15. Archives ------------------------------------------------------- */

.archive-entete { background: var(--ob-brume); border-block: 1px solid var(--ob-trait); padding-block: 34px; margin-bottom: 34px; }
.archive-entete__interieur { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.archive-entete__type { margin: 0 0 8px; font-family: var(--f-chiffre); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--ob-cuivre); }
.archive-entete__titre { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.025em; margin: 0; }
.archive-entete__texte { margin-top: 12px; max-width: 70ch; color: var(--ob-gris); font-size: 15px; }
.archive-entete__compte { margin: 12px 0 0; font-family: var(--f-chiffre); font-size: 11px; color: var(--ob-gris); font-variant-numeric: tabular-nums; }
.archive-entete__recherche { margin-top: 18px; }

.pagination { margin-top: 36px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-family: var(--f-chiffre); font-size: 12px; }
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px; height: 38px;
	padding: 0 12px;
	border: 1px solid var(--ob-trait);
	font-variant-numeric: tabular-nums;
}
.pagination .page-numbers:hover { border-color: var(--ob-encre); }
.pagination .page-numbers.current { background: var(--ob-encre); border-color: var(--ob-encre); color: #fff; }
.pagination .dots { border: 0; }

/* --- 16. Colonne laterale ----------------------------------------------- */

.widget { margin-bottom: 34px; }
.widget__title {
	font-family: var(--f-ui);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .14em;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
}
.widget__title::before { content: ""; width: 3px; height: 14px; background: var(--ob-cuivre); flex: 0 0 auto; }
.widget__title::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--ob-trait); }

.widget-liste { list-style: none; margin: 0; padding: 0; }
.widget-liste__item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ob-trait); }
.widget-liste__item:first-child { padding-top: 0; }
.widget-liste__vignette { flex: 0 0 82px; }
.widget-liste__vignette .vignette { aspect-ratio: 4 / 3; }
.widget-liste__texte { min-width: 0; }
.widget-liste__titre { font-family: var(--f-titre); font-size: 15px; line-height: 1.3; display: block; }
.widget-liste__rang {
	flex: 0 0 auto;
	font-family: var(--f-chiffre);
	font-size: 17px;
	color: var(--ob-trait-fort);
	line-height: 1;
	padding-top: 2px;
	font-variant-numeric: tabular-nums;
}
.widget-liste__item--rang:hover .widget-liste__rang { color: var(--ob-cuivre); }

.widget-rubriques { list-style: none; margin: 0; padding: 0; }
.widget-rubriques li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--ob-trait); font-size: 14px; }
.widget-rubriques span { font-family: var(--f-chiffre); font-size: 11px; color: var(--ob-gris); font-variant-numeric: tabular-nums; }

.widget ul:not([class]) { list-style: none; margin: 0; padding: 0; }
.widget ul:not([class]) li { padding: 9px 0; border-bottom: 1px solid var(--ob-trait); font-size: 14px; }

/* --- 17. Page Annonceurs ------------------------------------------------ */

.kit-hero { background: var(--ob-encre); color: #fff; padding-block: 60px 56px; }
.kit-hero__eyebrow { margin: 0 0 14px; font-family: var(--f-chiffre); font-size: 10px; text-transform: uppercase; letter-spacing: .22em; color: var(--ob-cuivre); }
.kit-hero__titre { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.04; letter-spacing: -.03em; margin: 0 0 18px; max-width: 20ch; }
.kit-hero__accroche { margin: 0 0 30px; font-size: clamp(16px, 2vw, 20px); line-height: 1.55; color: rgba(255, 255, 255, .74); max-width: 58ch; font-family: var(--f-titre); }
.kit-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.apropos-hero { background: var(--ob-brume); border-bottom: 1px solid var(--ob-trait); padding-block: 48px 42px; }
.apropos-hero .kit-hero__accroche { color: var(--ob-gris); }

.kit-audience { padding-block: 50px; }
.kit-formats { padding-block: 50px; background: var(--ob-brume); border-block: 1px solid var(--ob-trait); }
.kit-formats__grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; margin-top: 30px; }
.kit-format__apercu {
	display: flex;
	align-items: center;
	justify-content: center;
	background: repeating-linear-gradient(135deg, #fff, #fff 8px, #F4F6F5 8px, #F4F6F5 16px);
	border: 1px dashed var(--ob-trait-fort);
	margin-bottom: 14px;
	font-family: var(--f-chiffre);
	font-size: 10.5px;
	color: var(--ob-gris);
	text-align: center;
	padding: 10px;
}
.kit-format__apercu--leaderboard { aspect-ratio: 970 / 250; }
.kit-format__apercu--rectangle { aspect-ratio: 300 / 250; }
.kit-format__apercu--halfpage { aspect-ratio: 300 / 420; }
.kit-format__apercu--in-article { aspect-ratio: 728 / 200; }
.kit-format__apercu--sticky { aspect-ratio: 320 / 100; }
.kit-format__nom { font-size: 17px; margin: 0 0 6px; }
.kit-format__desc { margin: 0; font-size: 13.5px; color: var(--ob-gris); line-height: 1.5; }

.kit-tarifs { padding-block: 52px; }
.tarif-bloc { margin-top: 34px; }
.tarif-bloc__titre {
	font-family: var(--f-chiffre);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--ob-cuivre);
	margin: 0 0 12px;
}
.tarifs { width: 100%; border-collapse: collapse; }
.tarifs th, .tarifs td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--ob-trait); vertical-align: baseline; }
.tarifs thead th {
	font-family: var(--f-chiffre);
	font-size: 9.5px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--ob-gris);
	border-bottom: 1px solid var(--ob-encre);
	padding-block: 10px;
}
.tarifs tbody th { font-family: var(--f-ui); font-size: 15px; font-weight: 600; }
.tarifs__prix { font-family: var(--f-chiffre); font-size: 15px; font-weight: 500; color: var(--ob-vert); white-space: nowrap; font-variant-numeric: tabular-nums; }
.tarifs__note { font-size: 13.5px; color: var(--ob-gris); }
.kit-tarifs__note { margin-top: 24px; font-size: 13px; color: var(--ob-gris); font-style: italic; }

.kit-contact { background: var(--ob-vert); color: #fff; padding-block: 48px; }
.kit-contact__interieur { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 34px; align-items: center; }
.kit-contact__titre { font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 10px; }
.kit-contact__texte { margin: 0; color: rgba(255, 255, 255, .8); max-width: 46ch; }
.kit-contact__liste { list-style: none; margin: 0; padding: 0; font-family: var(--f-chiffre); font-size: 14px; }
.kit-contact__liste li { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .22); }

.redaction { margin-top: 48px; }
.redaction__grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 26px; }
.redacteur { display: flex; gap: 16px; }
.redacteur__photo { border-radius: 50%; flex: 0 0 auto; width: 64px; height: 64px; }
.redacteur__nom { margin: 0 0 4px; font-family: var(--f-titre); font-size: 17px; font-weight: 600; }
.redacteur__bio { margin: 0 0 4px; font-size: 13.5px; color: var(--ob-gris); line-height: 1.5; }
.redacteur__compte { margin: 0; font-family: var(--f-chiffre); font-size: 10.5px; color: var(--ob-gris-clair); }

.ours { margin-top: 48px; }
.ours__liste { margin: 24px 0 0; }
.ours__liste > div { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--ob-trait); }
.ours__liste dt { font-family: var(--f-chiffre); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--ob-gris); padding-top: 2px; }
.ours__liste dd { margin: 0; font-size: 15px; }

/* --- 18. Etats vides ---------------------------------------------------- */

.vide { padding-block: 40px; max-width: 620px; }
.vide--404 { text-align: center; margin-inline: auto; }
.vide__code { font-family: var(--f-chiffre); font-size: 64px; color: var(--ob-cuivre); margin: 0 0 8px; line-height: 1; }
.vide__titre { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 10px; }
.vide__texte { margin: 0 0 22px; color: var(--ob-gris); }
.vide__rubriques { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.vide--404 .recherche { margin-inline: auto; margin-bottom: 22px; }

/* --- 19. Commentaires --------------------------------------------------- */

.commentaires { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--ob-trait); }
.commentaires__liste { list-style: none; margin: 22px 0 34px; padding: 0; }
.commentaires__liste .comment-body { padding: 18px 0; border-bottom: 1px solid var(--ob-trait); }
.commentaires__liste .children { list-style: none; padding-left: 28px; }
.commentaires__note { font-size: 13px; color: var(--ob-gris); }
.comment-form { display: grid; gap: 14px; max-width: 640px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--ob-trait-fort);
	font-family: var(--f-ui);
	font-size: 15px;
	background: #fff;
}
.comment-form label { display: block; font-family: var(--f-chiffre); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ob-gris); margin-bottom: 5px; }
.comment-reply-title { font-size: 22px; margin-bottom: 8px; }

/* --- 20. Pied de page --------------------------------------------------- */

.pied { background: var(--ob-encre); color: rgba(255, 255, 255, .72); margin-top: 20px; }
.pied__haut {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-block: 54px 44px;
}
.pied__nom { font-family: var(--f-titre); font-size: 30px; font-weight: 700; color: #fff; margin: 0 0 10px; letter-spacing: -.025em; }
.pied__baseline { margin: 0 0 20px; font-size: 13.5px; line-height: 1.6; max-width: 40ch; }
.pied .custom-logo { filter: brightness(0) invert(1); margin-bottom: 14px; }
.pied__titre { font-family: var(--f-chiffre); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: var(--ob-cuivre); margin: 0 0 16px; }
.pied__liste { list-style: none; margin: 0; padding: 0; }
.pied__liste li { padding: 6px 0; font-size: 14px; }
.pied a:hover { color: #fff; }
.pied__liste--contact { font-family: var(--f-chiffre); font-size: 13px; }

.pied__widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; padding-bottom: 34px; }
.pied__widgets .widget__title { color: #fff; }
.pied__widgets .widget__title::after { background: rgba(255, 255, 255, .16); }
.pied__widgets .widget ul li { border-bottom-color: rgba(255, 255, 255, .12); }

.pied__bas { border-top: 1px solid rgba(255, 255, 255, .14); }
.pied__bas-interieur {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	align-items: center;
	justify-content: space-between;
	padding-block: 20px;
	font-family: var(--f-chiffre);
	font-size: 11px;
	color: rgba(255, 255, 255, .5);
}
.pied__mentions { margin: 0; }
.pied__legal-liste { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }

.haut-de-page {
	position: fixed;
	right: 20px; bottom: 20px;
	width: 42px; height: 42px;
	background: var(--ob-encre);
	color: #fff;
	border: 0;
	font-size: 16px;
	z-index: 120;
	opacity: .85;
}
.haut-de-page:hover { opacity: 1; background: var(--ob-vert); }
.haut-de-page[hidden] { display: none; }

/* --- 21. Adaptatif ------------------------------------------------------ */

@media (max-width: 1100px) {
	.zone--avec-colonne { grid-template-columns: minmax(0, 1fr) 280px; gap: 34px; }
	.une__grille { grid-template-columns: minmax(0, 1fr) 280px; gap: 32px; }
	.grille--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pied__haut { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
	.zone { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.zone--avec-colonne { grid-template-columns: minmax(0, 1fr); }
	.zone__colonne { position: static; }
	.une__grille { grid-template-columns: minmax(0, 1fr); }
	.une__fil { border-top: 1px solid var(--ob-trait); padding-top: 26px; }
	.grille--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lettre--bande .lettre__interieur { grid-template-columns: minmax(0, 1fr); }
	.lettre__preuve { grid-column: auto; }
	.kit-contact__interieur { grid-template-columns: minmax(0, 1fr); }
	.ours__liste > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }

	.navigation { display: none; }
	.bouton-menu { display: block; }
	.entete__cta { display: none; }
	.entete__nav-secondaire { display: none; }
	.marque { text-align: center; }
	.marque__baseline { display: none; }
	.entete__marque-interieur { padding-block: 16px; }

	.pub--sticky { display: block; }
	.cotation__interieur { gap: 12px; }
	.cotation__titre { display: none; }
	.cotation__sponsor-label { display: none; }
}

@media (max-width: 620px) {
	.enveloppe { padding-inline: 16px; }
	.grille--2, .grille--3, .grille--4 { grid-template-columns: minmax(0, 1fr); }
	.une__secondaires { grid-template-columns: minmax(0, 1fr); }
	.carte--liste { flex-direction: column; gap: 14px; }
	.carte--liste .carte__lien { flex: 1 1 auto; }
	.vignette--liste { aspect-ratio: 16 / 10; }
	.pied__haut { grid-template-columns: minmax(0, 1fr); }
	.auteur { flex-direction: column; }
	.entete__barre-interieur { gap: 12px; font-size: 10px; }
	.entete__mention { display: none; }
	.article__titre { max-width: none; }
	.lettre__form { flex-direction: column; gap: 8px; }
	.lettre__form input { border-right: 1px solid rgba(255, 255, 255, .3); }
	.confiance__grille { gap: 24px 30px; }
	.section-titre { white-space: normal; }
	.section-titre::after { display: none; }
	.section-entete { gap: 12px; }
	.tarifs thead { display: none; }
	.tarifs tbody th, .tarifs td { display: block; padding: 6px 0; border: 0; }
	.tarifs tbody tr { display: block; padding-block: 14px; border-bottom: 1px solid var(--ob-trait); }
	.tarifs__prix { color: var(--ob-vert); }
	.haut-de-page { bottom: 90px; }
}

/* --- 22. Impression ----------------------------------------------------- */

@media print {
	.entete__barre, .navigation, .cotation, .pub, .lettre, .zone__colonne,
	.partage, .similaires, .pied, .haut-de-page, .menu-mobile, .confiance { display: none !important; }
	body { font-size: 12pt; }
	.texte { max-width: none; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .7em; color: #666; }
}
