/*
Theme Name: Pixil Journal
Theme URI: https://www.pixil.fr/
Author: Pixil
Description: Thème de blog aux couleurs exactes du site www.pixil.fr (header et footer sombres texturés, accent doré, logo d'origine). Conçu pour que le visiteur ne ressente aucune rupture entre le site principal et le blog. L'URL du site principal se règle dans inc/site-config.php.
Version: 1.0.0
Requires at least: 5.5
Tested up to: 6.6
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pixil-journal
Tags: blog, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, translation-ready
*/

/* =========================================================================
   1. VARIABLES — couleurs prélevées sur www.pixil.fr
   ========================================================================= */
:root {
	--pixil-dark:        #282828; /* fond header / footer (moyenne de la texture) */
	--pixil-dark-2:      #222222; /* couleur sombre de la texture */
	--pixil-dark-3:      #393939; /* rayure claire de la texture */
	--pixil-gold:        #c5a022; /* accent : onglet actif, sous-titres, bandeau bas */
	--pixil-gold-logo:   #c6a107; /* doré du logo */
	--pixil-body-bg:     #ffffff;
	--pixil-text:        #666666;
	--pixil-heading:     #333333;
	--pixil-muted:       #888888;
	--pixil-border:      #e6e6e6;
	--pixil-footer-text: #bdbdbd;
	--pixil-footer-head: #f4f4f4;
	--pixil-footer-line: rgba(255, 255, 255, .18);

	--pixil-font-body:    "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--pixil-font-nav:     "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--pixil-font-heading: "Roboto", Arial, Helvetica, Tahoma, sans-serif;

	--pixil-topbar-h: 65px;
	--pixil-header-h: 90px;
}

/* =========================================================================
   2. BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--pixil-body-bg);
	color: var(--pixil-text);
	font-family: var(--pixil-font-body);
	font-size: 13px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* Les SVG inline du thème ont toujours une taille explicite. */
svg { display: inline-block; vertical-align: middle; width: 1em; height: 1em; }

a { color: var(--pixil-gold); text-decoration: none; }
a:hover, a:focus { color: var(--pixil-gold); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--pixil-font-heading);
	color: var(--pixil-heading);
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 .6em;
}
h1 { font-size: 35px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 13px; }

p { margin: 0 0 1.2em; }

blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--pixil-gold);
	color: var(--pixil-heading);
	font-size: 15px;
}

code, pre, kbd {
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 12px;
}
pre {
	background: #f7f7f7;
	border: 1px solid var(--pixil-border);
	padding: 15px;
	overflow: auto;
}

table { border-collapse: collapse; width: 100%; margin-bottom: 1.5em; }
th, td { border: 1px solid var(--pixil-border); padding: 8px 10px; text-align: left; }
th { background: #f7f7f7; color: var(--pixil-heading); }

hr { border: 0; border-top: 1px solid var(--pixil-border); margin: 2em 0; }

.pixil-container {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--pixil-gold);
	color: #000;
	padding: 10px 18px;
	font-family: var(--pixil-font-nav);
}
.skip-link:focus { left: 6px; top: 6px; text-decoration: none; }

/* =========================================================================
   3. BARRE DU HAUT (téléphone, menu secondaire, réseaux sociaux)
   ========================================================================= */
.pixil-topbar {
	background-color: var(--pixil-dark);
	background-image: url(assets/header-bg.png);
	background-repeat: repeat;
	color: var(--pixil-text);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.pixil-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 25px;
	min-height: var(--pixil-topbar-h);
	padding-top: 6px;
	padding-bottom: 6px;
}

.pixil-topbar__left,
.pixil-topbar__right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 22px;
	min-width: 0;
}

.pixil-phone {
	font-size: 14px;
	color: #f0f0f0;
	white-space: nowrap;
}
.pixil-phone svg { width: 13px; height: 13px; fill: var(--pixil-gold); vertical-align: -1px; margin-right: 6px; }
.pixil-phone a { color: #f0f0f0; font-weight: 700; }
.pixil-phone a:hover { color: var(--pixil-gold); text-decoration: none; }

.pixil-ff { display: block; height: 42px; width: auto; }

.pixil-topmenu,
.pixil-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 20px;
	min-width: 0;
}

.pixil-topmenu a {
	font-family: var(--pixil-font-nav);
	font-size: 12px;
	letter-spacing: .02em;
	color: #e8e8e8;
	text-transform: uppercase;
}
.pixil-topmenu a:hover { color: var(--pixil-gold); text-decoration: none; }

.pixil-social { gap: 4px 14px; }
.pixil-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px; height: 22px;
	color: var(--pixil-gold);
}
.pixil-social svg { width: 15px; height: 15px; fill: currentColor; }
.pixil-social a:hover { color: #ffffff; }

/* =========================================================================
   4. HEADER PRINCIPAL (logo + navigation)
   ========================================================================= */
.pixil-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background-color: var(--pixil-dark);
	background-image: url(assets/header-bg.png);
	background-repeat: repeat;
}
.admin-bar .pixil-header { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .pixil-header { top: 46px; }
}

.pixil-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	min-height: var(--pixil-header-h);
}

/* --- Marque : ne casse jamais, avec ou sans logo, titre court ou long --- */
.pixil-brand {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;          /* autorise la troncature/retour à la ligne */
	max-width: 340px;
	padding: 6px 0;
	text-decoration: none;
}
.pixil-brand:hover { text-decoration: none; }

.pixil-brand__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 70px;      /* largeur ET hauteur bornées : le header ne grandit pas */
}

.pixil-brand__text {
	font-family: var(--pixil-font-nav);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.15;
	letter-spacing: .04em;
	color: #ffffff;
	text-transform: uppercase;
	overflow-wrap: anywhere;   /* un titre très long passe à la ligne */
	word-break: break-word;
	hyphens: auto;
	max-width: 100%;
}
.pixil-brand__tagline {
	display: block;
	margin-top: 2px;
	font-family: var(--pixil-font-body);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: var(--pixil-gold);
	overflow-wrap: anywhere;
}

/* --- Bouton menu mobile --- */
.pixil-burger {
	display: none;
	margin-left: auto;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 2px;
	color: #fff;
	padding: 8px 10px;
	cursor: pointer;
	line-height: 0;
}
.pixil-burger svg { width: 20px; height: 20px; fill: currentColor; }
.pixil-burger:focus { outline: 2px solid var(--pixil-gold); }

/* --- Navigation --- */
.pixil-nav {
	margin-left: auto;
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
}

.pixil-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;        /* le menu retourne à la ligne, jamais de chevauchement */
	justify-content: flex-end;
	align-items: center;
	min-width: 0;
}

.pixil-menu > li { position: relative; }

.pixil-menu > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 15px;
	font-family: var(--pixil-font-nav);
	font-size: 13px;
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
}
.pixil-menu > li > a:hover,
.pixil-menu > li:hover > a,
.pixil-menu > li:focus-within > a { color: var(--pixil-gold); text-decoration: none; }

/* Onglet actif : doré, comme sur le site */
.pixil-menu > li.is-current > a { color: var(--pixil-gold); }

.pixil-menu__caret { display: inline-flex; opacity: .85; }
.pixil-menu__caret svg { width: 8px; height: 8px; fill: currentColor; }
.pixil-menu__home { display: inline-flex; }
.pixil-menu__home svg { width: 15px; height: 15px; fill: currentColor; }

/* Sous-menus */
.pixil-submenu {
	list-style: none;
	margin: 0;
	padding: 6px 0;
	position: absolute;
	top: 100%;
	left: 8px;
	min-width: 210px;
	background: #ffffff;
	border-top: 2px solid var(--pixil-gold);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 950;
}
.pixil-menu > li:hover > .pixil-submenu,
.pixil-menu > li:focus-within > .pixil-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pixil-submenu a {
	display: block;
	padding: 6px 19px;
	font-family: var(--pixil-font-nav);
	font-size: 12px;
	color: #444444;
	white-space: nowrap;
}
.pixil-submenu a:hover { color: var(--pixil-gold); text-decoration: none; }

/* --- Mobile --- */
@media (max-width: 991px) {
	.pixil-burger { display: inline-flex; }
	.pixil-nav {
		flex: 1 1 100%;
		order: 3;
		display: none;
		margin: 0;
	}
	.pixil-nav.is-open { display: block; }
	.pixil-menu {
		display: block;
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, .12);
		padding-bottom: 10px;
	}
	.pixil-menu > li > a { padding: 11px 0; }
	.pixil-submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		border-top: 0;
		padding: 0 0 6px 14px;
		min-width: 0;
	}
	.pixil-submenu a { color: #d8d8d8; padding: 7px 0; }
}

@media (max-width: 575px) {
	.pixil-brand { max-width: 220px; }
	.pixil-brand__logo { max-height: 46px; }
	.pixil-brand__text { font-size: 18px; }
	.pixil-topbar__inner { justify-content: center; }
	.pixil-topbar__left, .pixil-topbar__right { justify-content: center; width: 100%; }
}

/* =========================================================================
   5. BANDEAU DE TITRE DE PAGE
   ========================================================================= */
.pixil-pagehead {
	padding: 45px 0 35px;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
}
.pixil-pagehead__title { margin: 0; font-size: 35px; }
.pixil-pagehead__sub {
	margin: 10px 0 0;
	font-family: var(--pixil-font-heading);
	font-size: 20px;
	font-weight: 400;
	color: var(--pixil-muted);
}

@media (max-width: 575px) {
	.pixil-pagehead { padding: 30px 0 24px; }
	.pixil-pagehead__title { font-size: 26px; }
	.pixil-pagehead__sub { font-size: 16px; }
}

/* =========================================================================
   6. CORPS DE PAGE / GRILLE
   ========================================================================= */
.pixil-main { padding: 45px 0 60px; }

.pixil-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}
.pixil-content { flex: 1 1 62%; min-width: 0; }
.pixil-sidebar { flex: 0 1 300px; min-width: 0; }
@media (max-width: 991px) {
	.pixil-content, .pixil-sidebar { flex: 1 1 100%; }
}

/* --- Grille d'articles --- */
.pixil-posts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 35px 30px;
}
.pixil-layout .pixil-posts { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.pixil-card { min-width: 0; }
.pixil-card__thumb { display: block; margin-bottom: 15px; overflow: hidden; background: #f2f2f2; }
.pixil-card__thumb img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .35s ease;
}
.pixil-card__thumb:hover img { transform: scale(1.03); }

.pixil-card__title {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 8px;
}
.pixil-card__title a { color: var(--pixil-heading); }
.pixil-card__title a:hover { color: var(--pixil-gold); text-decoration: none; }

.pixil-meta {
	font-size: 12px;
	color: var(--pixil-muted);
	margin: 0 0 10px;
}
.pixil-meta a { color: var(--pixil-muted); }
.pixil-meta a:hover { color: var(--pixil-gold); }
.pixil-meta__sep { margin: 0 7px; opacity: .6; }

.pixil-card__excerpt { margin: 0 0 12px; }

.pixil-more {
	display: inline-block;
	font-family: var(--pixil-font-nav);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--pixil-gold);
	border-bottom: 1px solid var(--pixil-gold);
	padding-bottom: 2px;
}
.pixil-more:hover { text-decoration: none; color: var(--pixil-heading); border-color: var(--pixil-heading); }

/* --- Article seul --- */
.pixil-single__thumb { margin: 0 0 28px; }
.pixil-single__thumb img { display: block; width: 100%; }

.pixil-entry { font-size: 14px; line-height: 1.8; }
/* Confort de lecture : la colonne de texte reste lisible en pleine largeur. */
.pixil-single .pixil-entry,
.pixil-single ~ .pixil-comments,
.pixil-single .pixil-tags,
.pixil-single .pixil-postnav { max-width: 860px; }
.pixil-entry h2, .pixil-entry h3, .pixil-entry h4 { margin-top: 1.6em; }
.pixil-entry ul, .pixil-entry ol { padding-left: 22px; margin: 0 0 1.2em; }
.pixil-entry li { margin-bottom: .4em; }
.pixil-entry img { height: auto; }
.pixil-entry figure { margin: 1.6em 0; }
.pixil-entry figcaption { font-size: 12px; color: var(--pixil-muted); margin-top: 6px; }
.wp-caption { max-width: 100%; }
.alignleft  { float: left;  margin: 5px 25px 15px 0; }
.alignright { float: right; margin: 5px 0 15px 25px; }
.aligncenter { display: block; margin: 15px auto; }
.pixil-entry .wp-block-embed iframe,
.pixil-entry iframe { max-width: 100%; }

.pixil-tags {
	margin: 30px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--pixil-border);
	font-size: 12px;
}
.pixil-tags a { color: var(--pixil-text); }
.pixil-tags a:hover { color: var(--pixil-gold); }

.pixil-postnav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
	margin: 35px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--pixil-border);
	font-family: var(--pixil-font-nav);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.pixil-postnav a { color: var(--pixil-heading); }
.pixil-postnav a:hover { color: var(--pixil-gold); text-decoration: none; }

/* --- Pagination --- */
.pixil-pagination { margin-top: 45px; }
.pixil-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}
.pixil-pagination .page-numbers {
	display: inline-block;
	min-width: 34px;
	padding: 7px 10px;
	text-align: center;
	border: 1px solid var(--pixil-border);
	color: var(--pixil-heading);
	font-family: var(--pixil-font-nav);
	font-size: 12px;
}
.pixil-pagination .page-numbers:hover { border-color: var(--pixil-gold); color: var(--pixil-gold); text-decoration: none; }
.pixil-pagination .page-numbers.current {
	background: var(--pixil-gold);
	border-color: var(--pixil-gold);
	color: #000;
}

/* =========================================================================
   7. SIDEBAR & WIDGETS
   ========================================================================= */
.pixil-widget { margin-bottom: 38px; }
.pixil-widget__title {
	font-family: var(--pixil-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--pixil-heading);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--pixil-border);
	position: relative;
}
.pixil-widget__title::after {
	content: "";
	position: absolute;
	left: 0; bottom: -1px;
	width: 35px; height: 2px;
	background: var(--pixil-gold);
}
.pixil-widget ul { list-style: none; margin: 0; padding: 0; }
.pixil-widget li {
	padding: 7px 0;
	border-bottom: 1px solid #f2f2f2;
}
.pixil-widget li a { color: var(--pixil-text); }
.pixil-widget li a:hover { color: var(--pixil-gold); text-decoration: none; }

/* =========================================================================
   8. FORMULAIRE DE RECHERCHE & CHAMPS
   ========================================================================= */
input[type="text"], input[type="email"], input[type="url"],
input[type="search"], input[type="password"], input[type="tel"],
textarea, select {
	width: 100%;
	max-width: 100%;
	padding: 9px 12px;
	border: 1px solid var(--pixil-border);
	background: #fff;
	color: var(--pixil-text);
	font-family: var(--pixil-font-body);
	font-size: 13px;
	border-radius: 0;
}
input:focus, textarea:focus, select:focus {
	outline: 0;
	border-color: var(--pixil-gold);
}

.pixil-searchform { display: flex; gap: 0; }
.pixil-searchform input[type="search"] { flex: 1 1 auto; min-width: 0; }
.pixil-searchform button {
	flex: 0 0 auto;
	border: 1px solid var(--pixil-gold);
	background: var(--pixil-gold);
	color: #000;
	padding: 9px 14px;
	cursor: pointer;
	line-height: 1;
}
.pixil-searchform button:hover { background: var(--pixil-heading); border-color: var(--pixil-heading); color: #fff; }
.pixil-searchform button svg { width: 14px; height: 14px; fill: currentColor; vertical-align: -2px; }

.pixil-btn,
button, input[type="submit"], .wp-block-button__link {
	display: inline-block;
	font-family: var(--pixil-font-nav);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	background: var(--pixil-gold);
	color: #000;
	border: 1px solid var(--pixil-gold);
	padding: 11px 22px;
	cursor: pointer;
	border-radius: 0;
}
.pixil-btn:hover,
button:hover, input[type="submit"]:hover {
	background: var(--pixil-heading);
	border-color: var(--pixil-heading);
	color: #fff;
	text-decoration: none;
}

/* =========================================================================
   9. COMMENTAIRES
   ========================================================================= */
.pixil-comments { margin-top: 50px; }
.pixil-comments__title {
	font-family: var(--pixil-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--pixil-heading);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--pixil-border);
	position: relative;
	margin-bottom: 22px;
}
.pixil-comments__title::after {
	content: "";
	position: absolute;
	left: 0; bottom: -1px;
	width: 35px; height: 2px;
	background: var(--pixil-gold);
}
.comment-list, .comment-list ol { list-style: none; margin: 0; padding: 0; }
.comment-list ol.children { padding-left: 28px; }
.comment-body {
	padding: 18px 0;
	border-bottom: 1px solid #f2f2f2;
	overflow: hidden;
}
.comment-author { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.comment-author img { border-radius: 50%; }
.comment-author .fn { font-weight: 600; color: var(--pixil-heading); font-style: normal; }
.comment-metadata { font-size: 12px; color: var(--pixil-muted); margin-bottom: 8px; }
.comment-metadata a { color: var(--pixil-muted); }
.reply { font-size: 12px; }
.reply a {
	font-family: var(--pixil-font-nav);
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: .04em;
}
.comment-respond { margin-top: 30px; }
.comment-form p { margin-bottom: 14px; }
.comment-form label { display: block; margin-bottom: 5px; font-size: 12px; color: var(--pixil-heading); }
.comment-notes, .form-allowed-tags { font-size: 12px; color: var(--pixil-muted); }
.bypostauthor > .comment-body { border-left: 2px solid var(--pixil-gold); padding-left: 14px; }

/* =========================================================================
   10. 404 / AUCUN RÉSULTAT
   ========================================================================= */
.pixil-notfound { max-width: 620px; margin: 0 auto; text-align: center; }
.pixil-notfound__code {
	font-family: var(--pixil-font-heading);
	font-size: 90px;
	font-weight: 500;
	line-height: 1;
	color: var(--pixil-gold);
	margin: 0 0 10px;
}
.pixil-notfound .pixil-searchform { margin: 25px auto 0; max-width: 380px; }
.pixil-notfound__links {
	margin-top: 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* =========================================================================
   11. FOOTER
   ========================================================================= */
.pixil-footer {
	background-color: var(--pixil-dark);
	background-image: url(assets/header-bg.png);
	background-repeat: repeat;
	color: var(--pixil-footer-text);
	padding: 55px 0 30px;
	font-size: 13px;
}

.pixil-footer__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 35px 40px;
}
.pixil-footer__col--brand { flex: 1 1 300px; min-width: 0; }
.pixil-footer__col--links { flex: 2 1 480px; min-width: 0; }

.pixil-footer__logo { display: inline-block; margin-bottom: 18px; }
.pixil-footer__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 46px;
}
.pixil-footer__brandtext {
	font-family: var(--pixil-font-nav);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #fff;
	overflow-wrap: anywhere;
	display: block;
	margin-bottom: 18px;
}
.pixil-footer__address { margin: 0; line-height: 2; }
.pixil-footer__address a { color: #ffffff; }
.pixil-footer__address a:hover { color: var(--pixil-gold); text-decoration: none; }

.pixil-footer__head {
	font-family: var(--pixil-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--pixil-footer-head);
	margin: 0 0 10px;
}
.pixil-footer__sub {
	font-family: var(--pixil-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--pixil-gold);
	margin: 0 0 14px;
	padding-bottom: 14px;
	position: relative;
}
.pixil-footer__sub::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 35px; height: 2px;
	background: var(--pixil-gold);
}

.pixil-footer__lists {
	display: flex;
	flex-wrap: wrap;
	gap: 0 40px;
	margin-top: 26px;
}
.pixil-footer__lists ul {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1 1 220px;
	min-width: 0;
}
.pixil-footer__lists li { border-bottom: 1px solid var(--pixil-footer-line); }
.pixil-footer__lists a {
	display: block;
	padding: 11px 0;
	color: #ffffff;
	overflow-wrap: anywhere;
}
.pixil-footer__lists a:hover { color: var(--pixil-gold); text-decoration: none; }

/* Bandeau doré du bas */
.pixil-copyright {
	background: var(--pixil-gold);
	padding: 20px 0;
	font-size: 12px;
	color: #000;
}
.pixil-copyright__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	align-items: center;
	justify-content: space-between;
}
.pixil-copyright a { color: #000; }
.pixil-copyright a:hover { color: #000; text-decoration: underline; }
.pixil-copyright p { margin: 0; }

/* Retour en haut */
.pixil-totop {
	position: fixed;
	right: 18px; bottom: 18px;
	z-index: 800;
	width: 38px; height: 38px;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(40, 40, 40, .85);
	color: #fff;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.pixil-totop.is-visible { display: flex; }
.pixil-totop svg { width: 14px; height: 14px; fill: currentColor; }
.pixil-totop:hover { background: var(--pixil-gold); color: #000; }

@media print {
	.pixil-topbar, .pixil-header, .pixil-footer, .pixil-copyright, .pixil-totop { display: none; }
}
